Help for this page

Select Code to Download


  1. or download this
    for($a=0;$a<10;$a++){...}
    
  2. or download this
    for(1..10){...}
    
  3. or download this
    @lines = <FILE>#potentially expensive
    
    ...
        chomp $line;
        ...do something with $line
    }