#!/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'm using 5.6.1 built for MSWin)
Thanks, Paul
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
