The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#=interp2.pl - Interpolation in Perl 5
sub hallo {
	"Hallo, $_[0]!"
}

print "Otto sagt: @{[hallo('Hund')]}\n";