in reply to Using a module twice giving a problem

you didn't show how you "use" module. It looks to me that you have something like:
use MyModule ();
In this case, all exports are disabled.

Replies are listed 'Best First'.
Re^2: Using a module twice giving a problem
by Anonymous Monk on Aug 14, 2011 at 17:01 UTC
    I just do the following:
    use MyModule;
    The system does find the functions when I comment out one of the 'use', so the functions must be getting exported?
      Please see How do I post a question effectively? and provide us with code that reproduces your problem -- this is basic perl feature, available for over 14 years, its not likely the problem is with perl.