Help for this page

Select Code to Download


  1. or download this
    for my $element (@$arrayref) {
        print $element, "\n";
    ...
    for my $i (0 .. $#$arrayref) {
        print "$i: $arrayref->[$i]\n";
        }