programming-examples/perl/Statement/While loop and counter.pl
2019-11-15 12:59:38 +01:00

8 lines
107 B
Perl

#!/usr/bin/perl
$count=10;
while ($count > 0) {
print "$count...\n";
$count = $count -1;
}