Files
gyehoek-hs/golden/apply-twice/source.scm
T
msyds fab29f6fce
build / build (push) Failing after 1m9s
higher-order
2026-07-20 05:56:32 -06:00

6 lines
74 B
Scheme

;; apply `f' to `x' twice.
((λ (f x)
(f (f x)))
(λ (x) (+ x 4))
9)