in reply to Noob OO Question
How do I execute the different methods in the Hi.pm package?
You are already executing every method in package "Hi".
| Class method new | new Hi(...) (although Hi->new(...) is usually recommended) |
| Object method method_a | $test->method_a() |
| Object method method_b | $test->method_b() |
| Object method method_c | $test->method_d() |
|
|---|