Help for this page
for(my $i = 0; $i < 10; $i++) { # Note to reader: Yes, could have used a trinary here, but those a +re hard to read ... } print "even\n"; }
for (0 .. 9) { ... print "even\n"; }