in reply to use directives
subroutine redefined errors has nothing to do with your including 'use' in your library and your script. It implies that you are you have defined a subroutine in the same namespace multiple times. For example, this code would generate that same error.
package Common; sub my_routine {}; sub my_routine {};
Without looking at your code that is as much help I can give you.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: use directives
by bob_dobalina (Sexton) on Aug 05, 2009 at 14:53 UTC |