The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#=interp2.pl - Interpolation in Perl 5
sub hallo {
	"Hallo, $_[0]!"
}

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