RE: Setting Perl-stuff inside section

2001-10-05 Thread Geoffrey Young
> -Original Message- > From: Perrin Harkins [mailto:[EMAIL PROTECTED]] > Sent: Friday, October 05, 2001 2:26 PM > To: Scott Lanning; [EMAIL PROTECTED] > Subject: Re: Setting Perl-stuff inside section > > > > @PerlModule = qw(Blah); # add others to the l

Re: Setting Perl-stuff inside section

2001-10-05 Thread Perrin Harkins
> @PerlModule = qw(Blah); # add others to the list Might as well just say "use Blah;", I think. - Perrin

Re: Setting Perl-stuff inside section

2001-10-05 Thread Scott Lanning
On Fri, 5 Oct 2001, raptor wrote: >How can I set in section, say : > >PerlModule Blah.pm >PerlSetVar XXX On >PerlSetVar YYY Off @PerlModule = qw(Blah); # add others to the list push @PerlSetVar, [ XXX => 'On' ]; push @PerlSetVar, [ YYY => 'Off' ]; There's good examples in the eagle book, ch