MinusOperator

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

Binary minus 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 5 - 3 - 1 into tVar -- tVar contains 1
Values
NameTypeDescription
return

The result of subtracting the number Right from Left.

Description

Binary minus operator.

Tagsmath