Echo
SyntaxEcho{<expr>}
DescriptionThis function can be used to populate array dynamically in a program.
ExampleLets say you have array A.1 .. A.5 and would like to sum its value and display then the code would be like this
B := 1
Sum := 0
While ( B < 6 )
{
sum := sum + echo{ “A.” + B} }
print{sum}