SHORT_FORM |
Use Short Variable Names |
Use the SHORT_FORM directive to have the compiler input-parsing accept only short variable names (emulation/compatibility mode). Its complementary directive is LONG_FORM, which allows long variable names.
Programs can be written in either SHORT_FORM or LONG_FORM or in a combination of both and can run in either mode.
LONG_FORM Use Long Variable Names
'SF' Short Form Variables
short_form
ABCDE$="ABCDE$ IS NOT OK"
Error #20: Syntax error ...BCDE$="ABC... (Long variable name not accepted)
A$="A$ IS OKAY"
long_form
LONG_NAME$="LONG_NAME$ IS OK"