Help for this page

Select Code to Download


  1. or download this
    qw(one two three four five six);
    print $array[$#array]; # prints "six"
    
  2. or download this
    $j[$#j+1] = ("another");
    
  3. or download this
    push @j, "another";