Language Element | Short Description |
---|---|
AddressOf Operator | Returns delegate of function or alias of variable. |
TerminalOf Operator | Returns terminal of variable. |
New Operator | Creates a new object. |
Concatenation Operator (&) | Forces string concatenation of two expressions. |
+ Operator (unary) | Returns copy of array. |
Returns delegate of function or alias of variable (see LISPPA ).result = AddressOf ExprArguments
resultAny variable.ExprAny expression.
Returns terminal of variable (see LISPPA ).result = AddressOf ExprArguments
resultAny variable.ExprAny expression.
Creates a new object.result = New constructor'(' [arguments] ')'Arguments
resultAny variableconstructorA class nameargumentsOptional. Any arguments to be passed to the new object's constructor.Example
X = New Point(3, 5)
Forces string concatenation of two expressions.result = expression1 & expression2Arguments
resultAny variableexpression1, expression2If one or both expressions are Null expressions, result is Null.Any expression