1
1
mirror of https://github.com/kanaka/mal.git synced 2024-09-11 13:55:55 +03:00
mal/tests/inc.mal

5 lines
92 B
Plaintext

(def! inc1 (fn* (a) (+ 1 a)))
(def! inc2 (fn* (a) (+ 2 a)))
(def! inc3 (fn* (a)
(+ 3 a)))