05-02-2025, 03:04 AM
The action makes sense to me. You skip the definition stage of the FOR so it's basically a DO.. LOOP type structure with:
start = 0
finish = 0
increment = 0
i = start
DO
PRINT i
i = i + increment
LOOP UNTIL i > finish
So... an endless loop of zeroes.
start = 0
finish = 0
increment = 0
i = start
DO
PRINT i
i = i + increment
LOOP UNTIL i > finish
So... an endless loop of zeroes.