You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
285 B
Perl

#!C:/perl/bin
$loopcounter = 1;
while ($loopcounter < 10)
{
print "loop count = $loopcounter ";
$loopcounter++
}
$loopcounter = 1;
print "\n\nThe Until Loop:\n";
until ($loopcounter > 10)
{
print "loop count = $loopcounter ";
$loopcounter++
}