- or download this
package Foo;
...
set_globals();
#... more code ...
- or download this
################################
package Bar;
...
sub new {
my ( $class, $args ) = @_;
# etc...
- or download this
use strict;
use Foo::Bar;
my $obj = Foo::Bar->new;
- or download this
use Foo::Bar qw/noLog/;