Chapter 3 Programming
3 – 20
3.6.3 Available characters for variable names
Available characters for variable names are only alphabet a to z, A to Z and number 0 to 9 and _ (underscore). The
first character must not be numeric characters. Several words like BOOL, WORD, IF, FOR etc. are reserved.
Supported characters
Not allowed to begin with numeric characters.
Trailing underscores are not allowed.
Examples for variable names
Starting with numeric character.
Trailing underscores are not allowed
Minus sign is not allowed.
Other signs than underscore are not allowed.
3.6.4 Numeric literals
Numeric literals are specified as follows.
-12 0 123_456 +986 10#1234
-12.0 0.0 0.4560 3.14159_26