Help for this page

Select Code to Download


  1. or download this
    use Blah;
    use Foobar;
    ...
    $b = Blah->new();
    $f = Foobar->new();
    $x->doSomething;
    
  2. or download this
    sub new {
    ...
    ...
    sub doSomething {
    I want to access $f->some foobar method here
    }