- or download this
my $gah = join ("<br>", map {'$_ = $somehash{$_}'} keys %somehash);
- or download this
my $first = "Hello World\n";
my $second = "$first";
print "$second";
- or download this
use strict;
use CGI;
...
print $q->param('foo'),"\n"; # right
print $q->param('foo')."\n"; # right
print "@{[$q->param('foo')]}\n" # right, but twisted ;)