Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
        chomp $line;
        print "something here $line\n";
    }
    
  2. or download this
    use warnings;
    use strict;
    ...
        chomp;
        print "something here $_\n";
    }