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