Index

Count iteration()

Return the number of completed iterations of an enclosing loop.

Arguments:
(none)

Example:
The following example prints the word "hello" 5 times.
 while($iteration < 5) {
   print "Hello\n"
 }

Martin Shepherd (9-Oct-1997)