Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl
    open  something, ">/dev/null";
    print something "happilly\n"; # then
    close something; #back up...
    
  2. or download this
    #!/usr/bin/perl -w
    use strict;
    
  3. or download this
    open "something", ">/dev/null";
    
  4. or download this
    #!/usr/bin/perl
    use strict;
    open ThisWorksGreat, ">/dev/null";