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