Help for this page

Select Code to Download


  1. or download this
    push @foo , 1,2,3;
    push @foo, @bar;
    push @foo, %baz;
    
  2. or download this
    push @foo , { 1,2,3 };
    push @foo, \%baz;
    
  3. or download this
    push @foo, \@bar;