The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
sub foo($)
{
    my ($a) = @_;
    1/0;
}

local $b = 5;
my $c = 10;
foo(5)