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

$| = 1;

my $x = 1;
my $y = 20;
$x++;
$y = 3;
my $q = f();
$q++;


sub f {
	my $x;
	$x = 42;
	$y++;
	my $z = $x + $y;
	return $z;
}