1
0
mirror of https://github.com/janet-lang/janet synced 2024-06-24 22:23:15 +00:00

Fix splice -> unquote splice

This commit is contained in:
Calvin Rose 2019-03-12 11:16:27 -04:00
parent d42bdf2443
commit ba4dd9b5bb

View File

@ -47,7 +47,7 @@
:error (error (parser/error p)))
# Make ast from forms
(def ast ~(fn [params &] (default params @{}) (,buffer ;forms)))
(def ast ~(fn [params &] (default params @{}) (,buffer ,;forms)))
(def ctor (compile ast *env* source))
(if-not (function? ctor)