- or download this
package Foo::BarMod;
use Foo::Bar;
...
}
# Everything else, including new(), from Foo::Bar
1;
- or download this
Undefined subroutine Foo::BarMod::whiz at line 17.
- or download this
# call class method whiz()
Foo::BarMod::whiz();
- or download this
Foo::BarMod->whiz();
whiz Foo::BarMod;
- or download this
Foo:BarMod::whiz;