<< Click to Display Table of Contents >> Navigation: »No topics above this level« Assignment |
mapp Services V5.16
An assignment is made with assignment operator ":=".
<variable> := <expression>;
On the left side of an assignment is variable <variable>; this is assigned the value of expression <expression> on the right side.
Var1 := Var2 * 10;
After this statement is executed, "Var1" has ten times the value of "Var2".