ID : 449
Naming convention
There are naming conventions for naming file or variable in PAC Script.
Details About Naming Convention
- The first letter should be a character of alphabet [a to z].
- The second-to-last character should be alphabet [a to z], number or "_ (underscore)".
- These are case-insensitive."Test01", "test01" and "TEST01" are recognized as identical characters.
- Only one-byte characters are available.
- The maximum number of characters that can be used for a name is 64.
- Reserved word cannot be used for a name.
Available Examples
test001
n20110401
Unavailable Examples
01test
_test
@task
#test
test-1
(test)
Objects of Naming Convention
Following items must have a name that follows the naming convention.
- Local variable name
- Procedure name
- Label name
- Macro definition name (constant name)
- File name (Program file name, header file name, BMP file name. Refer to "Configuration of PacScript.")
Do not use reserved word for a program file name.
In that case, the program cannot be called and executed properly.
ID : 449