Help for this page

Select Code to Download


  1. or download this
    my @array = @{ sub_returning_aref() };
    
  2. or download this
    my $aref = sub_returning_aref();
    
  3. or download this
    my @array = sub_returning_list();
    
  4. or download this
    my $aref = [ sub_returning_list() ];
    
  5. or download this
    my @array = keys %hash;
    my $aref  = [ keys %hash ];