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

sub add {
   my($a, $b) = @_;
   return $a + $b;
}

$x = 1;
$y = 2;

$r = 0;

$r = add($x, $y);

print "r = $r\n";