RE: variable start values
- Posted by Jason Dube <dubetyrant at hotmail.com> Dec 10, 2003
- 489 views
Pete Lomax wrote: > > > On Wed, 10 Dec 2003 16:33:19 +0000, Jason Dube > <dubetyrant at hotmail.com> wrote: > > > if x[1][1] < 90 then > > It took me a moment to figure that out. I suggest you use > "if x[1][1] < 'Z' then" instead, and probably <= as well. > > Regards, > Pete > Well, I had it backwards, it was supposed to tell me if the sentence was not capitalized, which would have been if x[1][1] > 90 anyways...of course this wouldn't help if the user put something lower than 'A', but I'll restrict it more later. :) But using 'Z' is better, more readable,and thorough, thx.