Returning values from one perl module to another

2001-08-28 Thread Robert_Collins
Ok. Now I can call a Perl program from another Perl program but I am having trouble returning values back to the calling Perl program. Return does not seem to work, Any suggestions?? Robert ( Kent ) Collins: IBM Certified Solutions Expert Cell Phone: 214.632.3940 DBA Intranet Site: http:/

Re: Returning values from one perl module to another

2001-08-28 Thread Christopher Solomon
On Tue, 28 Aug 2001 [EMAIL PROTECTED] wrote: > Ok. Now I can call a Perl program from another Perl program but I am > having trouble returning values back to the calling Perl program. Return > does not seem to work, Any suggestions?? > Well... It totally depends one what you are doing. It

Re: Returning values from one perl module to another

2001-08-28 Thread Peter Scott
>Ok. Now I can call a Perl program from another Perl program but I am >having trouble returning values back to the calling Perl program. Return >does not seem to work, Any suggestions?? return is only for code within the same program. To get values back from another program the easiest way