Re: bypassing "use strict"

2003-06-04 Thread Rob Anderson
Hi Paul, "Paul Morris" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi > > #!/usr/bin/perl > use strict; > $a = 123; #slips through strict > $b = 123; #slips through strict > $c = 123; #caught by strict > > Is there any reason (apart from convenience) why 'a' and 'b' should ge

Re: bypassing "use strict"

2003-06-04 Thread Beau E. Cox
- Original Message - From: "Paul Morris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 03, 2003 3:00 PM Subject: bypassing "use strict" > Hi > > #!/usr/bin/perl > use strict; > $a = 123; #slips through strict > $b

RE: bypassing "use strict"

2003-06-04 Thread Jaschar Otto
Are all variables declared with my() || local() || etc ? that would be my first guess, but without knowing the error message i cannot guess more -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

bypassing "use strict"

2003-06-04 Thread Paul Morris
Hi #!/usr/bin/perl use strict; $a = 123; #slips through strict $b = 123; #slips through strict $c = 123; #caught by strict Is there any reason (apart from convenience) why 'a' and 'b' should get past "use strict" here? Obviously, one would desire to have meaningful variable names, but...? (I