4 lines
81 B
Perl
4 lines
81 B
Perl
for($i=2; $i <= 8; $i += 2) {
|
|
print "$i, ";
|
|
}
|
|
print "who do we appreciate?\n";
|