6 lines
74 B
Scheme
6 lines
74 B
Scheme
;; apply `f' to `x' twice.
|
|
((λ (f x)
|
|
(f (f x)))
|
|
(λ (x) (+ x 4))
|
|
9)
|