RosettaCodeData/Task/Loops-For-with-a-specified-step/Perl/loops-for-with-a-specified-step.pl
2023-07-01 13:44:08 -04:00

4 lines
81 B
Perl

for($i=2; $i <= 8; $i += 2) {
print "$i, ";
}
print "who do we appreciate?\n";