Assignment

<< Click to Display Table of Contents >>

Navigation:  »No topics above this level«

Assignment

mapp Services V5.16

An assignment is made with assignment operator ":=".

Syntax

<variable> := <expression>;

On the left side of an assignment is variable <variable>; this is assigned the value of expression <expression> on the right side.

Example

Var1 := Var2 * 10;

After this statement is executed, "Var1" has ten times the value of "Var2".