Help for this page

Select Code to Download


  1. or download this
    my $a_ref = shift; # reference to input array A
    my @a = @$a_ref; # input array A
    
  2. or download this
    my @a = @{+shift};