Help for this page

Select Code to Download


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