Help for this page
use Blah; use Foobar; ... $b = Blah->new(); $f = Foobar->new(); $b->doSomething;
sub new { ... ... sub doSomething { $f->methodX(); }
sub new { ... ... sub methodX { does some fun things here }