Help for this page

Select Code to Download


  1. or download this
    print FLE $_, $/ for @file;
    
  2. or download this
    for ( @file ) {
        print FLE "$_\n" if /\S/; # must have at least one non-whitespace
    }