in reply to Module error
You should not turn off warnings if looking for errors. Is it necessary to use no warnings in your module? It is probably safer to include a few more lines of code to check for undefined values and these things in the places where this can happen. The extra effort needed to code so that your program runs without warnings pays off in reduced debugging time.no warnings qw(uninitialized redefine once);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Module error
by Anonymous Monk on Dec 24, 2004 at 06:44 UTC |