basic: all but 'dotest.bas' and 'blackjack.bas (as always)' are working

This commit is contained in:
minjaesong
2020-12-14 19:59:00 +09:00
parent 186340d704
commit c18c14e760
4 changed files with 18 additions and 6 deletions

View File

@@ -2,7 +2,9 @@
(* { word } = word is repeated 0 or more times *)
(* [ word ] = word is optional (repeated 0 or 1 times) *)
line = linenumber , stmt , {":" , stmt} ;
line =
linenumber , stmt , {":" , stmt}
| linenumber , "REM" , ? basically anything ? ;
linenumber = digits ;
stmt =