// Result == 100 (letrec ((int -> bool) even (lambda (int i) (if (< i 0) #f (if (= i 0) #t (even (- i 2)))))) (if (even 15) 50 100))