add statement support

This commit is contained in:
2020-09-29 23:30:58 +05:30
parent 2b36e74ff5
commit 02505f273e
12 changed files with 251 additions and 88 deletions

View File

@@ -1,14 +1,16 @@
COMMENT=1
INPUT=2
OUTPUT=3
DEC=4
INC=5
LEFT=6
RIGHT=7
'\\\\.*?\\\\'=1
'?'=2
'.'=3
'-'=4
'+'=5
'>'=6
'<'=7
NEWLINE=1
COMMENT=2
INPUT=3
OUTPUT=4
DEC=5
INC=6
LEFT=7
RIGHT=8
'\n'=1
'\\\\.*?\\\\'=2
'?'=3
'.'=4
'-'=5
'+'=6
'>'=7
'<'=8