> (define x 6) > (lambda (x) (+ x 1)) # > (define inc (lambda (x) (+ x 1))) > inc # > (if (even? x) inc fac) # > ((if (even? x) inc fac) 5) 6