2022-04-07 18:43:21 +02:00

12 lines
221 B
Scheme

;; In Emacs, open this file in -*- Scheme -*- mode.
;; Functions
(def function?
(fun (o)
(and (@block? o) (@= 202 (@block-tag o)))))
(def function-compose
(fun (f g)
(fun (x) (f (g x)))))