TimesOperator
Type
operator
Summary
Binary multiplication operator.
Syntax
<Left> * <Right>
Description
Binary multiplication operator.
Parameters
| Name | Type | Description |
|---|---|---|
Left | An expression that evaluates to a number. | |
Right | An expression that evaluates to a number. |
Examples
variable tVar as Number
put 3 * 5 into tVar -- tVar contains 15
Value
| Name | Type | Description |
|---|---|---|
return | The result of multiplying the numbers Left and Right. |