6 lines
66 B
Perl
6 lines
66 B
Perl
|
#!/usr/bin/perl -w
|
||
|
|
||
|
|
||
|
foreach $i (5..10) {
|
||
|
print "$i\n";
|
||
|
}
|