Details
Description
The following Boo code generates an infinite loop. Leaving the for loop works fine.
while true:
for i in range(2):
pass
break
The following Boo code generates an infinite loop. Leaving the for loop works fine.
while true:
for i in range(2):
pass
break
I lost my tabs in my example, so here with explicit tabbing (\t == tab)
while true:
\tfor i in range(2):
\t\tpass
\tbreak