This seems like it'd be obvious but haven't had any luck with it..

Let's say I want to build an array of characters in order, i.e.

characters = ['a','b','c','d',..]

If they were numbers I could do this:

r = []
(0..9).each { |x| r << x}

but how to do for characters?

Thanks

-- 
Posted via http://www.ruby-forum.com/.