Help for this page

Select Code to Download


  1. or download this
    # Saves a reference to the existing array.
    push(@arrayA, \@arrayB);
    
  2. or download this
    # Creates a new (anon) array and saves a reference to it.
    push(@arrayA, [ @arrayB ]);