basic while loop:
int $i =0; while($i<=10) { print ("value of variable i is:" + $i + "\n"); $i++; }
int $i =0; do { $i++; print ("value of variable i is:" + $i + "\n"); } while($i<=10)
more MEL basics here and here.
October 18th, 2009 | Posted in "code, MEL" | by Oliver | No Comments