encore
encore copied to clipboard
Encore permits bad shadowing
The code below should not compile because of the 2nd i
shadowing the first. This code however runs fine.
for i <- [1..10] do
for i <- [0..i] do
println(i)
end
end
Fix on the way.