Naming conventions for variables

Use descriptive variable names that are unique for the Master Template. When variable names are unique, scope issues are detected during the creation of the Master Template and error documents are produced.

#BEGIN
IF TRUE THEN
NUMBER my_number := 3
FI
#
The value of my_number is @(my_number).
#
END#

Result: None. User does not get an error document.

The variable my_number is unknown after the FI as it is defined in the IF and closed with FI. The Master Template cannot be created.