add assignment of mutable variables

This commit is contained in:
Luna 2019-08-24 17:46:42 -03:00
parent 7c4aa04b00
commit 366be14cea
5 changed files with 45 additions and 12 deletions

View file

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