Help for this page

Select Code to Download


  1. or download this
    $array[-1] = $foo;
  2. or download this
    $array[$#array] = $foo;
  3. or download this
    for my $i (0..$#array) {
      # do something with $array[$i]
    }