The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package BreakMe;

while (1)
{
	$main::looping++;
}
$main::moving_on++;

sub breakit
{
	my $i;
	for (1 .. 10)
	{
		$i = $_;
	}
	$main::moving_on++ unless $i == 10;
}

1;