Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use strict;
    use warnings;
    ...
    }
    
    return 1;
    
  2. or download this
    use Foo;
    use strict;
    use warnings;
    
    Foo::Bar->foo;
    
  3. or download this
    package Foo;
    use strict;
    use warnings;
    ...
    }
    
    return 1;
    
  4. or download this
    use Foo;
    use strict;
    use warnings;
    ...
    Foo::Bar->foo;
    Foo->bar;
    Foo::Bar->bar;