PlusOperator

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

Binary plus 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 + 4 + 3 into tVar -- tVar contains 12
Values
NameTypeDescription
return

The result of adding the numbers Left and Right.

Description

Binary plus operator.

Tagsmath