Help for this page

Select Code to Download


  1. or download this
        #!/usr/bin/perl -w
    
        use strict;
    ...
        close FILE or die "Error message here $!";
    
  2. or download this
        #!/usr/bin/perl -w
    
        use strict;
    ...
        print FILE $str;
    
        close FILE or die "Error message here $!";