VariablesAs stated earlier, variables in TBScript are loosely typed. Any variable can contain a 64-bit integer (32 bit for DOS real mode), floating point, or a string value. In addition, a variable can also be contain sub variables using the "dot" syntax or elements using the "bracket" syntax.
Note that any of the statements above will create the named variable if it has not already been created. This is also true when a variable is read.
NOTE: Variables are unique to the current subroutine. Variables in different subroutines with the same name are different variables.
|