1
0
mirror of https://github.com/janet-lang/janet synced 2024-12-23 15:00:27 +00:00

Update special form lists to include break.

This commit is contained in:
Calvin Rose 2019-03-11 00:58:26 -04:00
parent e12aace02c
commit 98e68a5cb4
2 changed files with 3 additions and 1 deletions

View File

@ -13,6 +13,7 @@
'def true 'def true
'splice true 'splice true
'set true 'set true
'break true
'unquote true 'unquote true
'quasiquote true 'quasiquote true
'quote true 'quote true

View File

@ -344,7 +344,8 @@
# Now we generate the bindings in the language. # Now we generate the bindings in the language.
(def- specials (def- specials
@["def" @["break"
"def"
"do" "do"
"var" "var"
"set" "set"