When defining variables, please use a prefix to indicate their type.
The prefix should be the first letter of the variable type followed by an underscore (_).
Variable types: BYTE, INT, WORD, LONG, FLOAT, DECIMAL, STRING.
Note: This is not case-sensitive (uppercase and lowercase letters are treated the same).
This convention helps improve syntax highlighting and readability in the source code.
Example:
B_TestVariable BYTE
I_SampleNumber INT
S_UserName STRING