Files
gyehoek-hs/golden/exec/apply-twice/source.scm
T
msyds 5200932944
build / build (push) Successful in 1m19s
wip: reader
2026-08-21 01:07:26 -06:00

6 lines
74 B
Scheme

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