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.

14 lines
165 B
Perl

#!/usr/bin/perl
$x = 1;
do {
print "$x ";
$x++;
} while ($x <= 10);
print "\n";
$y = 1;
do {
print "$y " ;
$y++;
} until ($y > 10);