- or download this
$; = $";
$;{Just=>another=>Perl=>Hacker=>} = $/;
print %;
- or download this
$foo{$a, $b, $c}
- or download this
$foo{ join $;, $a, $b, $c }
- or download this
$;{Just=>another=>Perl=>Hacker=>} = $/;
- or download this
$;{Just,another,Perl,Hacker,} = $/;
- or download this
$;{ join ' ', "Just", "another", "Perl", "Hacker", "" }
= "\n";
- or download this
$;{"Just another Perl Hacker"} = "\n";
- or download this
print %;
- or download this
("Just another Perl Hacker", "\n")
- or download this
Just another Perl Hacker