Files
gyehoek-hs/golden/exec/callcc-early-exit-4/source.scm
T
2026-08-27 01:01:17 -06:00

6 lines
162 B
Scheme

;; confer ../callcc-early-exit-3
(letrec ((app (λ (f x)
(begin (f x)
#f))))
(call/cc (λ (k) (app (λ (x) (k x)) #t))))