From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

package Dev::Null;
use strict;
sub TIEHANDLE { bless {}, shift }
sub PRINT { 1 }
1;