The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#=otto1.pl - Perl 5
use strict;
my $wer = "Otto";
my $haustier = "Hund";
my @obst = qw(Äpfel Bananen);
my %lieblings = (
	Farbe => "blau",
	Drink => "Martini"
);

print "$wer hat einen $haustier\n";
print "$wer mag $obst[0] und $obst[1]\n";
print "${wer}s Lieblingsfarbe ist $lieblings{'Farbe'}\n";
print "${wer}s Lieblingsdrink ist $lieblings{'Drink'}\n";