Fix the quoting compile

This commit is contained in:
Nathan Braswell
2020-04-20 01:22:45 -04:00
parent d726705845
commit 19ae75b819
2 changed files with 25 additions and 9 deletions

4
bf.kp
View File

@@ -78,9 +78,11 @@
(def! test (fn* [] (let* (
;(l (list 3 4 5))
a 5
l '(a 4 5)
;l '(a 4 5)
;l (vector 3 4 5)
;l [a 4 5]
l '[3 4 5]
;l '[a 4 5]
)
(nth l 0))))
(def! main (fn* [] (let* (it (test)) (do (println it) it))))