Files
not-python2/examples/hello.np
Alek Ratzloff 4d005494a3 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>
2023-04-02 01:55:51 -07:00

5 lines
71 B
Plaintext

println(123);
println(None);
message = "hell world";
println(message);