Help for this page

Select Code to Download


  1. or download this
    if(/^10/){
      print OUT "\n";
    }
    
  2. or download this
    print OUT "\n" if /^10/;
    
  3. or download this
    print OUT "$_\n";
    
  4. or download this
    while(<DATA>){
      chomp;
      print OUT "\n" if /^10/;
      print OUT "$_\n";
    }