#!/Perl/bin # als erstes die notwendigen Sicherheitseinstellungen use strict; use warnings; my ($hello, $world); # Deklaration von 2 Variablen $hello = "hello"; $world = "hugo"; # Interpolation (Ersetzung) von Variablen funktioniert innerhalb von Strings # die in doppelte Anfuehrungszeichen gesetzt sind print "$hello $world \n"; exit;