Help for this page

Select Code to Download


  1. or download this
    Xyzzy::say_it;
    # Calls sub say_it in package Xyzzy with an empty parameter list
    ...
    $obj->do_stuff(1, 2, 3);
    # Because $obj is blessed as an instance of Some::Class, calls
    # Some::Class::do_stuff with the parameters ($obj, 1, 2, 3)