Mathieu Bouchard wrote:
> 
> k=0; ("A".."k").each{|x|k+=1}; k
> 
> I expected 11, I got 26. Why is that?
> 
> matju


  k=0; (?A..?k).each{|x|k+=1}; k

... yields 43, and I think that makes sense.  How does it work for
strings?