Help for this page

Select Code to Download


  1. or download this
    my @array1 = qw/ball bat helmet/;
    while (@array1) {
    ...
      print $item;
      push(@array2,$item);
    }
    
  2. or download this
    my @array1 = qw/ball bat helmet/;
    while (@array1) {
      print pop @array1;
    }