Re: sharing subroutines

2002-02-23 Thread Brett W. McCoy
On Fri, 22 Feb 2002, bob ackerman wrote: > am i making to big a fuss? is creating a module a trivial task? Making a module is relatively easy and is the best way to do it in Perl. Modules don't have to be big and complicated, nor are they always intended to be for general public use. -- Brett

Re: sharing subroutines

2002-02-22 Thread Tanton Gibbs
olution as simple as possible, but no simpler. Glad I could help! Tanton - Original Message - From: "bob ackerman" <[EMAIL PROTECTED]> To: "Tanton Gibbs" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 11:54 PM Subject: Re: s

Re: sharing subroutines

2002-02-22 Thread bob ackerman
ms pretty straight forward to me. Naturally, there can be > more > to it than that, but there doesn't have to be or even need to be in a case > like the above. > > Tanton > - Original Message - > From: "bob ackerman" <[EMAIL PROTECTED]> > To: &q

Re: sharing subroutines

2002-02-22 Thread bob ackerman
rward to me. Naturally, there can be > more > to it than that, but there doesn't have to be or even need to be in a case > like the above. > > Tanton > - Original Message - > From: "bob ackerman" <[EMAIL PROTECTED]> > To: "Aaron Shurts"

Re: sharing subroutines

2002-02-22 Thread Tanton Gibbs
[EMAIL PROTECTED]> To: "Aaron Shurts" <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Friday, February 22, 2002 11:22 PM Subject: Re: sharing subroutines > fine, except that creating a module seems like a big deal. you are > minimizing the effort when you show me one

Re: sharing subroutines

2002-02-22 Thread bob ackerman
fine, except that creating a module seems like a big deal. you are minimizing the effort when you show me one subroutine as a module. there is a heap of bookkeeping to attend to. the docs indicate that modules are meant to be created and put in public use - i.e., generally of use. i just want a

Re: sharing subroutines

2002-02-22 Thread Brett W. McCoy
On Fri, 22 Feb 2002, bob ackerman wrote: > is there a way to share uncompiled perl scripts? that is, to include the > subroutines of one script file into another script file. > failing that, can i easily compile a perl script and use it in a script? > why am i having trouble figuring this out? T

RE: sharing subroutines

2002-02-22 Thread Timothy Johnson
I take it you mean besides cutting and pasting the text? I'm not sure exactly what you're asking. If your subroutine is not part of a "compiled" script, why not just copy the subroutine's code into your script? As for an easy way to compile a perl script, there are two well-known products for