in reply to Re^2: Using a module twice giving a problem
in thread Using a module twice giving a problem

Does explicitly naming the package name in the function call have its disadvantages?

Only in that it means you have to do extra typing.
If calling it that way works but calling it as functionOne produces the error you reported, then that's a clear indication that you've managed to disable the exporting of that function.

Btw, the general advice is that you should delete the "&" and call the function as MyModule::functionOne

Cheers,
Rob

Replies are listed 'Best First'.
Re^4: Using a module twice giving a problem
by Anonymous Monk on Aug 15, 2011 at 04:30 UTC
    Thank you.