fix var declarations by making them expressions
This commit is contained in:
parent
72bc932d23
commit
4534549f41
3 changed files with 83 additions and 51 deletions
|
@ -9,6 +9,6 @@ fn main(a int) int {
|
|||
1 + 2 + 3 + 4
|
||||
1 + 1 * 1
|
||||
3 / (51 + 2)
|
||||
a := 1+2
|
||||
println(2 * 1956 + a)
|
||||
mut a := 1+2
|
||||
a = 2
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue