Help for this page

Select Code to Download


  1. or download this
      print STDERR "Called node 'foo'\n";
    
  2. or download this
    package noprint;
    use Carp;
    ...
    sub TIEHANDLE {
      return bless ({}, shift);
    }
    
  3. or download this
    tie(*NOPRINT, 'noprint');
    select(NOPRINT);
    # time passes while the page is built.
    # Before spitting out the final page:
    select(STDOUT);