> -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
> @PerlModule = qw(Blah); # add others to the list
Might as well just say "use Blah;", I think.
- Perrin
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