Re: FileCache - use strict

2001-04-30 Thread Casey West
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

Re: FileCache - use strict

2001-04-30 Thread Bob Runkel
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

Re: FileCache - use strict

2001-04-30 Thread Johnathan Kupferer
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

Re: FileCache - use strict

2001-04-30 Thread Dan Brown
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

Re: FileCache - use strict

2001-04-30 Thread Dan Brown
; > > -Original Message- > > From: Johnathan Kupferer [mailto:[EMAIL PROTECTED]] > > Sent: Monday, April 30, 2001 4:34 PM > > To: Cron, Daniel > > Cc: '[EMAIL PROTECTE

Re: FileCache - use strict

2001-04-30 Thread Dan Brown
! > > -Original Message- > From: Johnathan Kupferer [mailto:[EMAIL PROTECTED]] > Sent: Monday, April 30, 2001 4:34 PM > To: Cron, Daniel > Cc: '[EMAIL PROTECTED]' >

RE: FileCache - use strict

2001-04-30 Thread Cron, Daniel
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]'

Re: FileCache - use strict

2001-04-30 Thread Johnathan Kupferer
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