Last modified 4 years ago Last modified on 08/24/08 11:09:59

The value of a variable or an expression can be assigned to another using the = operator. The right side of the assignment is assigned to the left side.

currentDroid = foundDroid; index = base + found * 4; myString = "some text"; myFloat = 2.0 + pi / 2.0;

<!-- Lacks information on implicit type casting --> {{Scripting Manual}} Category:Scripting manual ?