do while

$i = 0;
do {
    print "Array element $i : $array[i]";
    $i++
} while ($i <= $#array);
 Lab
 Home