This commit is contained in:
bronku 2025-11-28 09:47:01 +01:00
parent e576ade39b
commit ac0abb97c6

View file

@ -70,6 +70,7 @@ stmt_list:
stmt:
expr NEWLINE { $$ = std::make_unique<ExprStmt>(std::move($1)); }
| expr ASSIGN expr NEWLINE { $$ = std::make_unique<Assign>(std::move($1), std::move($3));}
;
expr: