Help for this page

Select Code to Download


  1. or download this
    use B qw( );          # Import nothing
    
  2. or download this
    use B qw( foo bar );  # but not moo
    
  3. or download this
    use B qw( moo );      # doh!
    
  4. or download this
    use B qw( );
    BEGIN {
       *_moo = \&B::moo;
    }