The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
# For shutting up Test::Harness.
# Has to work on 5.004 which doesn't have Tie::StdHandle.
package Dev::Null;

sub WRITE  { }
sub PRINT  { }
sub PRINTF { }

sub TIEHANDLE {
    my $class = shift;
    my $fh = do { local *HANDLE; \*HANDLE };
    return bless $fh, $class;
}
sub READ     { }
sub READLINE { }
sub GETC     { }

1;