${_}
1 2 3 4
my $hallo = "Hallo "; my $halloele = "Urks "; print "$halloele\n"; print "${hallo}ele\n";
1 2 3 4 5
use strict; use warnings; my $owner = "Jonny Walker"; print "This is $owner's home.";
1 2 3 4 5
use strict; use warnings; my $owner = "Jonny Walker"; print "This is ${owner}'s home.";
print "This is $owner\'s home.";
2015-06-09T16:08:06 GwenDragonUh, das C-Imperium schlägt zurück. Backslasheritis ist eine grässliche Art und Weise. ;)
QuoteName "owner::s" used only once: possible typo at - line 1.
Use of uninitialized value $owner::s in concatenation (.) or string at - line 1.
print "This is $owner\'s home.";