OverOperator

Typeoperator
DictionaryLCB
LibraryLiveCode Builder
Syntax
<Left> / <Right>
Associationscom.livecode.arithmetic
Summary

Binary division operator.

Parameters
NameTypeDescription
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 -- tVar contains 0.6
Values
NameTypeDescription
return

The result of dividing the number Left by Right.

Description

Binary division operator.

Tagsmath