This commit is contained in:
Yann Esposito (Yogsototh) 2017-04-20 00:27:01 +02:00
parent efe548cfa5
commit 89079016c2
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

View file

@ -1,6 +1,7 @@
(do
;; This is lish core
(def require (fn [x] (eval (str "(do " (cat x) ")"))))
;; increment
(def inc (fn [x] (+ x 1)))
@ -10,4 +11,3 @@
[]
(cons (f (first lst))
(map f (rest lst))))))
)