Help for this page

Select Code to Download


  1. or download this
    test()           # function
    Module::test()   # function
    $obj->test()     # virtual instance method
    $class->test()   # static method
    
  2. or download this
    test($obj)         # From within the object that defines test().
      -or-
    Class::test($obj)  # From anywhere.
    
  3. or download this
    $obj->Class::test()
    $class->Class::test()
    $obj->SUPER::test()
    $class->SUPER::test()
    
  4. or download this
    sub eg { $_[0]->test($_[1]); }
    sub eg { One::test(@_); }
    sub eg { Two->test($_[1]); }
    sub eg { One->test($_[1]); }