Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    while(<DOG>){
    print;}
    close (DOG);
    
  2. or download this
    use strict;
    use warnings;
    use diagnostics;
    ...
    open (DOG, ">not.txt") or die ("Cannot open not.txt");
    print DOG "hello!";
    close (DOG);