set basic repo structure

This commit is contained in:
2024-08-05 07:18:10 +00:00
parent 1711be891f
commit 388e4fda04
27 changed files with 1771 additions and 1 deletions

View File

@ -0,0 +1,34 @@
INT=1
VOID=2
IF=3
ELSE=4
RETURN=5
PLUS=6
MINUS=7
MULTIPLY=8
DIVIDE=9
ASSIGN=10
LPAREN=11
RPAREN=12
LBRACE=13
RBRACE=14
SEMICOLON=15
ID=16
INT_LITERAL=17
WS=18
COMMENT=19
'int'=1
'void'=2
'if'=3
'else'=4
'return'=5
'+'=6
'-'=7
'*'=8
'/'=9
'='=10
'('=11
')'=12
'{'=13
'}'=14
';'=15