in reply to regex/perl golf: loops
use warnings; use strict; my $cot = 0; LOOP: { print "perlmonks rule", $/; redo LOOP if ++$cot < 10; } [download]