PlusUnaryOperator
Type
operator
Summary
Unary plus operator.
Syntax
+ <Operand>
Description
The unary plus operator is a no-op on the predefined numeric types.
Parameters
| Name | Type | Description |
|---|---|---|
Operand | An expression that evaluates to a number. |
Examples
variable tVar as Number
put +5 into tVar -- tVar contains 5
Value
| Name | Type | Description |
|---|---|---|
return | The result of evaluating Operand. |