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 = 2;
my $z = $x + $y;

1;

__END__