Lecture overview -- Keyboard shortcut: 'u'  Previous page: Evaluation of parenthesized expressions in Scheme -- Keyboard shortcut: 'p'  Next page: Lambda calculus -- Keyboard shortcut: 'n'  Lecture notes - all slides together  Annotated slide -- Keyboard shortcut: 't'  Alphabetic index  Help page about these notes  Course home    Introduction to Functional Programming in Scheme - slide 28 : 49

Lambda Expressions in Scheme

A lambda expression is an expression which is evaluated to a function object

(lambda (formal-parameter-list) expression)
simple-lambda-expressions.scm
Simple examples of lambda expressions.