Help for this page

Select Code to Download


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