On Mon, Apr 30, 2001 at 05:50:36PM -0700, Bob Runkel wrote:
: How do I unsubscribe from this email list? I have tried several methods,
send mail to [EMAIL PROTECTED]
--
Casey West
How do I unsubscribe from this email list? I have tried several methods,
but continue to get the emails!?
- Original Message -
From: "Johnathan Kupferer" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, April 30, 2001 5:38 PM
Subject: Re: FileCache - use s
This one got under my skin so I did a little research:
> use strict;
> use FileCache;
> my $a01;
> $a01 = 'a01file';
> cacheout $a01;
> print $a01 "XYZ\n";
It seems that perl decides that its calling print with arguments '$a01
"XYZ\n"' and then chokes on the argumen
trying to write is "XYZ\n".
> > >
> > > I think your solution writes to standard out, not file a01file.
> > > I'm probably still missing something.
> > >
> > > Thanks again!
> > >
> > > -Original
;
> > -Original Message-
> > From: Johnathan Kupferer [mailto:[EMAIL PROTECTED]]
> > Sent: Monday, April 30, 2001 4:34 PM
> > To: Cron, Daniel
> > Cc: '[EMAIL PROTECTE
!
>
> -Original Message-
> From: Johnathan Kupferer [mailto:[EMAIL PROTECTED]]
> Sent: Monday, April 30, 2001 4:34 PM
> To: Cron, Daniel
> Cc: '[EMAIL PROTECTED]'
>
y still missing something.
Thanks again!
-Original Message-
From: Johnathan Kupferer [mailto:[EMAIL PROTECTED]]
Sent: Monday, April 30, 2001 4:34 PM
To: Cron, Daniel
Cc: '[EMAIL PROTECTED]'
The error is a bit misleading. The problem is you need an operator
between $ao1 and "XYZ\n". Try:
print $a01, "XYZ\n";
or
print $a01 . "XYZ\n";
This should clear things up. I don't know whay perl is trying to do with it if you
don't "use strict"...
- Johnathan
>
> How can I fix this so