basic: integration test on master branch lol

This commit is contained in:
minjaesong
2020-12-12 17:05:59 +09:00
parent 81e10c54de
commit 0d68c667f0
4 changed files with 349 additions and 339 deletions

View File

@@ -16,9 +16,9 @@ expr = (* this basically blocks some funny attemps such as using DEFUN as anon f
lit
| "(" , expr , ")"
| "IF" , expr_sans_asgn , "THEN" , expr , ["ELSE" , expr]
| function_call
| expr , op , expr
| op_uni , expr
| function_call ;
| op_uni , expr ;
expr_sans_asgn = ? identical to expr except errors out whenever "=" is found ? ;