0023: Unexpected instruction
The compiler finds an incorrect syntax. It could be an error in a
FOR
loop or a malformed variable declaration.Possible solutions: check the documentation and provide the correct syntax:
var <variable>: <type>
or
var
<variable>: <type>
end
FOR <loop variable> = <initial value> TO/DOWNTO <final value> [step = 1]
<the loop body>
END
Last modified 1mo ago