Help for this page

Select Code to Download


  1. or download this
    my @ARRAY=subroutine();
    
    ...
     my @array=("one", "two"," three");
     return @array;
    }
    
  2. or download this
    return wantarray ? @array : \@array;