Help for this page

Select Code to Download


  1. or download this
    # In module
    package Foo;
    ...
    use Class::Autouse 'Foo';
    
    Foo->bar;
    
  2. or download this
    # The following two lines produce an identical result
    use Class::Autouse ':devel', 'Foo';
    
    # Is the same as
    use Foo ();
    
  3. or download this
    use Class::Autouse;
    Class::Autouse->load_recursive('Foo');