mirror of
https://github.com/kanaka/mal.git
synced 2024-11-10 12:47:45 +03:00
5 lines
92 B
Plaintext
5 lines
92 B
Plaintext
|
(def! inc1 (fn* (a) (+ 1 a)))
|
||
|
(def! inc2 (fn* (a) (+ 2 a)))
|
||
|
(def! inc3 (fn* (a)
|
||
|
(+ 3 a)))
|