in reply to Loading a module into many packages
#!/usr/bin/perl use strict; use warnings; use mymodule; print "Hello World\n";
Does your module load?
Then, can you call a sub in your module?
Slowly build yourself back up to your main program adding in more code to see what is going on.
I know it sounds simplistic but this has helped me a ton of times.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Loading a module into many packages
by arkturuz (Curate) on Oct 26, 2006 at 15:31 UTC | |
by Fendaria (Beadle) on Oct 26, 2006 at 16:39 UTC |