Array Ruby

a = ['a','b','c']
a.reverse_each {|e| print e}       # Array-specific: prints "cba"