add: more token
This commit is contained in:
parent
079d40eef3
commit
e53f559f36
|
|
@ -48,6 +48,12 @@ print (print|PRINT)
|
|||
loop (loop|LOOP)
|
||||
setq (setq|SETQ)
|
||||
quote (quote|QUOTE)
|
||||
for (for|FOR)
|
||||
in (in|IN)
|
||||
from (from|FROM)
|
||||
to (to|TO)
|
||||
dotimes (dotimes|DOTIMES)
|
||||
dolist (dolist|DOLIST)
|
||||
defconstant (defconstant|DEFCONSTANT)
|
||||
|
||||
%%
|
||||
|
|
|
|||
|
|
@ -75,6 +75,12 @@ namespace DragonLisp {
|
|||
LOOP "loop"
|
||||
SETQ "setq"
|
||||
QUOTE "quote"
|
||||
FOR "for"
|
||||
IN "in"
|
||||
FROM "from"
|
||||
TO "to"
|
||||
DOTIMES "dotimes"
|
||||
DOLIST "dolist"
|
||||
DEFCONSTANT "defconstant"
|
||||
;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue