MultiplyNumberBy

Typestatement
DictionaryLCB
LibraryLiveCode Builder
Syntax
multiply <Target> by <Value>
Associationscom.livecode.arithmetic
Summary

Multiplies Target by Value.

Parameters
NameTypeDescription
Target

An expression that evaluates to a numeric variable.

Value

An expression that evaluates to a number.

Example
variable tVar as Number
put 2 into tVar
multiply tVar by 2 -- tVar contains 4
Description

Multiplies the number Target by Value.

Note: It is a syntax error if Target does not evaluate to a variable.

Tagsmath