Help for this page

Select Code to Download


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