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 }
## sub new { ... } sub doSomething { $f->methodX(); } ##
## sub new { ... } sub methodX { does some fun things here }