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