Help for this page

Select Code to Download


  1. or download this
    @arr = (1 .. 20);
    foreach $i ( 0 .. $#arr ) {
      # do something
    }
    
  2. or download this
    foreach $i ( 0 .. 19 ) {
      # do something
    }
    
  3. or download this
    foreach $i (1 .. 20)) {
      # do something
    }
    
  4. or download this
    foreach $i (@arr)) {
      # do something
    }