MinusUnaryOperator
Type
operator
Summary
Unary minus operator.
Syntax
- <Operand>
Description
Unary minus operator.
Parameters
| Name | Type | Description |
|---|---|---|
Operand | An expression that evaluates to a number. |
Examples
variable tVar as Number
put -(5 + 4) into tVar -- tVar contains -9
Value
| Name | Type | Description |
|---|---|---|
return | The negated result of evaluating Operand. |