1. Declaration in loop do: is this correct?
- Posted by bill Feb 19, 2011
- 1233 views
loop do integer x = 3 until x = 3 end loop
Gives an error: (x out of scope at until)
According to the manual this code is correct - scope ends at end loop.
loop do integer x = 3 until x = 3 end loop
Gives an error: (x out of scope at until)
According to the manual this code is correct - scope ends at end loop.