Usage
Syntax: new TGraalVar("name")
Explanation
TGraalVar is the base class from which all other types are derived.
Example
myVar = "Hello, World!";
... which creates a variable with the name "myVar" and setting it equal to "Hello, World!"
Note: a variable definition may be preceded by the var keyword, but it ignored by the compiler. Additionally, a TGraalVar may be created by use of the new keyword:
new TGraalVar("myVar") { this = "Hello, World!"; };
Categories
CategoryClassObject