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