programming-examples/perl/Statement/While loop and counter.pl

8 lines
107 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/bin/perl
$count=10;
while ($count > 0) {
print "$count...\n";
$count = $count -1;
}