in reply to To module or not?
If you had an add_it() function that you didn't want overwritten, you could use your module as
And when multiple modules have the same function names (this is most common with classes -- objects, I mean), they need to be able to keep their own functions separate to themselves.use MyModule; print MyModule::add_it($amount);
|
|---|