Help for this page

Select Code to Download


  1. or download this
    my $skip = 0;
    for my $i (0 .. $#array) {
        next if $i == $skip;
        #process
    }
    
  2. or download this
    for (@array[1 .. $#array]) {
        #process
    }