Oninit Logo
The Down System Specialists
+1-913-674-0360
+44-2081-337529
Partnerships Contact
Finderr

-660 Loop variable variable-name cannot be modified.

An attempt was made to modify the value of a loop variable in a FOR statement. Loop variables cannot be modified inside a loop.

Example of error:

FOR i IN (1,2,3,4) LET i = i + 1; -- error END FOR

Correction: Use another variable in the LET statement.