Re: Issues with 'require' statement.

2005-06-15 Thread Deane . Rothenmaier
t; Sent by: [EMAIL PROTECTED] 06/15/2005 03:17                 To:                 cc:                 Subject:        Issues with 'require' statement. Hi all, I have a file that simply contains a common set of functions, and wish to include this file across many scripts. Now, I use t

RE: Issues with 'require' statement.

2005-06-15 Thread Hughes, Trystan
OK. Thanks, people. It works fine now :) Tryst -Original Message- From: $Bill Luebkert [mailto:[EMAIL PROTECTED] Sent: Wed 15/06/2005 11:00 To: Hughes, Trystan Cc: activeperl@listserv.ActiveState.com Subject: Re: Issues with 're

Re: Issues with 'require' statement.

2005-06-15 Thread $Bill Luebkert
Hughes, Trystan wrote: > Hi all, > > I have a file that simply contains a common set of functions, and wish to > include this file across many scripts. Now, I use the following statements to > do this... > > eval "require 'F:\\SVN\\Scripts\\function_list.pl'"; > print "Unable to include scri

RE: Issues with 'require' statement.

2005-06-15 Thread Brian Raven
Hughes, Trystan wrote: > Hi all, > > I have a file that simply contains a common set of functions, > and wish to include this file across many scripts. Now, I use > the following statements to do this... > > eval "require 'F:\\SVN\\Scripts\\function_list.pl'"; > print "Unable to include script: f

Issues with 'require' statement.

2005-06-15 Thread Hughes, Trystan
Hi all, I have a file that simply contains a common set of functions, and wish to include this file across many scripts. Now, I use the following statements to do this... eval "require 'F:\\SVN\\Scripts\\function_list.pl'"; print "Unable to include script: function_list.pl: $@" if $@; ...