Help for this page

Select Code to Download


  1. or download this
    use Foo qw(bar);
    
  2. or download this
    use Foo 'bar';
    
  3. or download this
    use Foo qw(bar baz qux);
    
  4. or download this
    use base 'Foo';
    
  5. or download this
    use base qw(Foo);