Help for this page

Select Code to Download


  1. or download this
    my @Array = ( 1, 2, 3 );
    my $ArrayRef = [ 1, 2, 3 ];
    ...
    
    @Array = @$ArrayRef;
    @Array = @{$ArrayRef};
    
  2. or download this
    return @array; # DOES NOT RETURN AN ARRAY, IT RETURNS A LIST