- or download this
my $thr = threads->new(\&sub_returning_hash, $argument);
- or download this
return %output_record;
- or download this
return scalar %output_record;
- or download this
%h = qw[ a 11 b 12 c 13 ];;
print scalar %h;;
3/8
- or download this
%r = scalar %h;;
Odd number of elements in hash assignment
- or download this
my( $thr ) = threads->new(\&sub_returning_hash, $argument);
- or download this
[11:51:36.25]C:\test>junk
a = 11
b = 12
c = 13
- or download this
my $thr = threads->new( {'context' => 'list'}, \&sub_returning_hash, $
+argument );