|     | Simple examples of lambda expressions. | Lecture 1 - slide 28 : 49 Program 1 | 
(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)))