Open TobiasWrigstad opened 7 years ago
The code below should not compile because of the 2nd i shadowing the first. This code however runs fine.
i
for i <- [1..10] do for i <- [0..i] do println(i) end end
Fix on the way.
The code below should not compile because of the 2nd
i
shadowing the first. This code however runs fine.