Firmware V0.75
Continue is not working as I expected. I would think only 0..5 are printed out.
Nuance or bug?
for i in range(10)
if i > 5
continue
end
println(i)
next
0
1
2
3
4
5
6
7
8
9
Firmware V0.75
Continue is not working as I expected. I would think only 0..5 are printed out.
Nuance or bug?
for i in range(10)
if i > 5
continue
end
println(i)
next
0
1
2
3
4
5
6
7
8
9
We will look into it. I am guessing we had it tested with while loops and missed for loops!
While does work.