CS 3304: Comparative Languages
FP Foundations, Scheme
[
Course Documents
] : [
FP Foundations, Scheme
]
Previous
Contents
Next
Keyword Index
Lambda Expressions in Scheme
Based on
notation
(lambda (l) (car (car l)))
L is called a "bound variable"; think of it as a formal parameter name
Lambda expressions can be applied
((lambda (l) (car (car l))) '((a b) c d))