# Perl style "for" loop print "$_\n" for 0..99; # or this map { print "$_\n" } 0..99;