Help for this page
for $i (@arr) { if ($i==5 .. $i==10) { print "$i\n"; } }
for $i (@arr) { print "$i\n" if $i==5 .. $i==10; }