The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!perl

my $q = 1;
my $w = 2;
my $e = add($q, $w);
$e++;
$e++;

print "$e\n";

sub add {
  my($z, $x) = @_;
  my $c = $z + $x;
  return $c;
}

# unbreakable line
my $breakable_line = 1;
# other unbreakable line