Help for this page

Select Code to Download


  1. or download this
    use Blah;
    use Foobar;
    ...
    $b = Blah->new();
    $f = Foobar->new();
    $b->doSomething;
    
  2. or download this
    sub new {
    ...
    ...
    sub doSomething {
    $f->methodX();
    }
    
  3. or download this
    sub new {
    ...
    ...
    sub methodX {
    does some fun things here
    }