add assignment support (without mut)

This commit is contained in:
Luna 2019-08-25 10:27:50 -03:00
parent 366be14cea
commit 72bc932d23
5 changed files with 57 additions and 8 deletions

View file

@ -9,6 +9,6 @@ fn main(a int) int {
1 + 2 + 3 + 4
1 + 1 * 1
3 / (51 + 2)
mut a := 1+2
a := 1+2
println(2 * 1956 + a)
}