- or download this
use feature 'say';
unless ($verbose) {
...
#say 'this goes unsayable';
}
say 'said';
- or download this
use feature 'say';
undef &say;
...
sub not_say {
print 'not saying';
}
- or download this
use feature 'say';
use Sub::Delete;
delete_sub 'say';
say 'testing';