Help for this page

Select Code to Download


  1. or download this
    my @array;
    push @array, $somevalue;
    
  2. or download this
    my $array = [];
    push @array, $someValue;
    
  3. or download this
    local *array = $aRef; 
    push @array, $someValue;