Added correct compiling of top level vector values, including with meta

This commit is contained in:
Nathan Braswell
2020-05-10 00:50:46 -04:00
parent 4cd7b22c86
commit 3f501a5c2f
2 changed files with 17 additions and 2 deletions

5
bf.kp
View File

@@ -70,6 +70,8 @@
; (inner 7)))
; 7)))
(def! to_be_saved (with-meta [1] [2]))
(def! to_be_saved_s "asdfasdf")
(def! main (fn* () (let* ( a 7
b [1]
@@ -83,6 +85,9 @@
(println c)
(println (meta c))
(println "world")
(println to_be_saved)
(println (meta to_be_saved))
(println to_be_saved_s)
a)))
)))))
(do