assignment: Add variable assignment

* Syntax for x = y
* Compiler creates Inst::Store thunks
* New Vm::store function

Signed-off-by: Alek Ratzloff <alekratz@gmail.com>
This commit is contained in:
2023-04-02 01:55:51 -07:00
parent bfe7ca33bd
commit 4d005494a3
6 changed files with 6767 additions and 2376 deletions

View File

@@ -1,3 +1,4 @@
println(123);
println(None);
println("hell world");
message = "hell world";
println(message);