Help for this page

Select Code to Download


  1. or download this
    sub foo {
        my %hash = ( a => 1, b => 2 );
        return wantarray ? %hash : \%hash;
    }
    
  2. or download this
    my $hashref = foo();
    
  3. or download this
    my %hash = foo();