12 lines
221 B
Plaintext
Raw Normal View History

2022-04-07 18:33:05 +02:00
;; 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)))))