changed equals to assign

This commit is contained in:
bronku 2025-11-22 00:33:48 +01:00
parent 87695ebb20
commit 6a66b63680
3 changed files with 5 additions and 5 deletions

View file

@ -27,7 +27,7 @@
%token <std::string> IDENTIFIER
%token <std::string> STRING
%token <int> NUMBER
%token EQUALS PLUS MINUS L_PAREN R_PAREN COLON
%token ASSIGN PLUS MINUS L_PAREN R_PAREN COLON
%token KW_DEF KW_IF KW_RETURN KW_FOR KW_IN
%token EOF NEWLINE INDENT_UP INDENT_DOWN