Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
package routine; our @EXPORT=qw(dostuff); use Exporter; our @ISA=qw(Exporter); use strict; sub dostuff() { my ($scalar,$scalar,$scalar_REF,$scalar)=@_; .. .. ...Do Some Processing... }
(doit.pl) use lib "/libs"; use routine; dostuff("a","b",\@c,"d");
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: use lib "/..." and sub parms..
by Anonymous Monk on Mar 15, 2004 at 17:02 UTC | |
by Vautrin (Hermit) on Mar 15, 2004 at 18:29 UTC | |
by Aristotle (Chancellor) on Mar 15, 2004 at 20:34 UTC | |
by mrpeabody (Friar) on Mar 16, 2004 at 00:46 UTC | |
|
Re: use lib "/..." and sub parms..
by pbeckingham (Parson) on Mar 15, 2004 at 18:17 UTC | |
by TomDLux (Vicar) on Mar 15, 2004 at 19:17 UTC | |
by pbeckingham (Parson) on Mar 15, 2004 at 19:49 UTC | |
|
Re: use lib "/..." and sub parms..
by eXile (Priest) on Mar 15, 2004 at 21:46 UTC |