TimesOperator |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | <Left> * <Right>
|
Associations | com.livecode.arithmetic |
Summary | Binary multiplication operator.
|
Parameters | Name | Type | Description |
---|
Left | | An expression that evaluates to a number.
|
Right | | An expression that evaluates to a number.
|
|
Example | variable tVar as Number
put 3 * 5 into tVar
|
Values | Name | Type | Description |
---|
return | | The result of multiplying the numbers Left and Right.
|
|
Description | Binary multiplication operator.
|
Tags | math |