daeisbae / AParser

Yet another programming language for educational purpose and simplicity
MIT License
0 stars 0 forks source link

Implement Assigning Variable #37

Closed daeisbae closed 4 months ago

daeisbae commented 4 months ago

When we want to declare variable, we use set variable1 = 123 and when we want to assign different value to the variable, we use variable1 = 123

In PR #36 , declare variable statement (AST node) was implemented, but require assign variable ast node to be implemented in the future

daeisbae commented 4 months ago

Implemented in #41 #42 #43