Help for this page

Select Code to Download


  1. or download this
    for (@reportnL[0..4]) {
      print "$_\n";
    }
    
  2. or download this
    for ( 0 .. 4 )
    {
        print qq{$reportnL[$_]\n};
    }
    
  3. or download this
    print qq{$reportnL[$_]\n} for 0 .. 4;