(lambda (x) ; The identity function x) (lambda (n) ; The function that adds one to a number (+ n 1)) (lambda (f) ; Given the function f, returns a function that (lambda (x) ; accepts x and applies f on x (f x)))