10-24-2023, 07:59 PM
>"It actually creates an endless loop. It is assumed that inside the loop, there is a condition to break out of it. However, `WHILE... WEND` is not recommended to be used in this programming system simply because there is no `EXIT WHILE`. Freebasic could do that, but QB64 cannot."<
QB64 can EXIT WHILE don't mislead please
QB64 can EXIT WHILE don't mislead please
Code: (Select All)
While 1
i = i + 1
If i >= 10 Then Exit While
Print i
Wend
b = b + ...