Assignment statements
You have already used an assignment statement, and it is probably the most commonly used part of any programming language :
SetInteger A,42
SetFloat F,<"3.1415927">
SetString MyText,<"Here is a simple string">
For next statements
You may recall the use of the FOR NEXT statement in earlier examples. The FOR NEXT commands are used to create a finite loop in which a variable is incremented or decremented from a value to a value.
The BasicFOR commands can be (...)