in reply to Re: How to solve this using use strict ?
in thread How to solve this using use strict ?

I might have just changed the double-quotes to single-quotes to avoid unnecessary interpolation of the vars...
my @a = ('A'..'Z');
rather than
my @a = ("A".."Z");


Update: I overlooked the post by GrandFather, which mentioned the single quotes. oops.