in reply to Relative Module Path
Why not combine P and M into a single unit? That way you're sure they won't be separated by a too-specific copy command.
Using your example, ~/P would become:
#!/usr/bin/perl -w use strict; use M; my $m = M->new; # # End of main program # package M; sub new{1}; 1;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Relative Module Path
by pbeckingham (Parson) on Aug 01, 2004 at 15:01 UTC | |
by tadamec (Beadle) on Aug 02, 2004 at 00:59 UTC |