We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The FROM statement expects its variable to be of type INT; if it's BYTE or WORD, an "expecting a variable" error occurs.
FROM
INT
BYTE
WORD
This can be tested with this code:
PROGRAM test; PRIVATE WORD perrito; BEGIN FROM perrito=0 TO 1; END FOR (perrito = 0;;) END END
Notice that the FOR statement works perfectly with a WORD or BYTE variable.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
FROM
statement expects its variable to be of typeINT
; if it'sBYTE
orWORD
, an "expecting a variable" error occurs.This can be tested with this code:
Notice that the FOR statement works perfectly with a
WORD
orBYTE
variable.The text was updated successfully, but these errors were encountered: