Help for this page
do { ... $i++; }until($i<=10)
use strict; my $i=5; ... $i--; }until($i<=0);
use strict; my $i=5; ... print "the value of i inside the loop is :$i\n"; $i--; }until($i<=0);