PowOperator |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | <Left> ^ <Right>
|
Associations | com.livecode.math |
Summary | Binary exponentiation operation.
|
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 5^2 into tVar
|
Values | Name | Type | Description |
---|
return | | The result of raising Left to the power Right.
|
|
Description | Binary exponentiation operation.
|
Tags | math |