Variable
SyntaxVar{ <expr> }
Description This function can be used to create array in igs fl.
First the expression is calculated and the expression is created as a variable in system.
You should use this function to create array in system.
Example Lets say need to create an array like A.1.. A.5. to do so write code like this
A := 1
While ( a < 6 )
{
var{ “A.” + A } := 0
A := A + 1
}