Variable (Declaration)

Variable(varName1, varName2, ..., varNamen), Var(varName1, varName2, ..., varNamen)

Variables varName1, varName2, ..., varNamen are declared. There is no type specification. Variables are - as well as stack elements - containers. Therefore they are able to carry any possible InstantView® values. Every module has a name space for variables, which means the variable is only known in the module, in which it got declared via statement 'Variable'. Variables are passed on to all Derived Modules.

It is possible to access a variable that has been declared in the module GLOBAL from every module, as long as there is no local variable with the same name. In another module, it is possible to declare global variables with the statement GlobalVariable.