Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 314 Bytes

0022.md

File metadata and controls

11 lines (7 loc) · 314 Bytes

0022: Loop counter is not a variable

The compiler finds that a FOR loop's counter is not a variable.

Possible solutions: use a variable as the counter of the loop iterations:

FOR $MyCounter = 1 to 10

END