daeisbae / AParser

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

Implement Identifier Assign Interpreter #43

Closed daeisbae closed 4 months ago

daeisbae commented 4 months ago

Changes

Demo

./AParser 
>>> set hello = 123
123
>>> hello
123
>>> hello =23
23
>>> hello
23