programming-examples/perl/Statement/Example of foreach from a min to a max.pl
2019-11-15 12:59:38 +01:00

6 lines
66 B
Perl

#!/usr/bin/perl -w
foreach $i (5..10) {
print "$i\n";
}