Variable and Function Scope
Suppose a unit MyUnit
has a unit variable named myVar
and a function named factorial
. Both have global scope and can be accessed by any function in this or other units, e.g. from TestUnit
in the example below. The only time a variable or custom object in the Helium DSL is not globally scoped is when it is declared inside a function and thus scoped to the function alone. To refer to a unit’s member functions or variables from another unit, you have to use the scope operator (the colon).
unit TestUnit;
void test() {
MyUnit:myVar = "New string value!";
int f = MyUnit:factorial(5);
}
Note: Unit variables cannot be in line initialized when they are declared. The following code will not compile:
unit MyUnit;
string myVar = "some value"; // this is not a legal statement