a = ["a","b","c"] a.reverse_each {|e| print e} # Array-specific: prints "cba"
[1, 2, 3, 4].reverse_each { |x| puts x } # 4 # 3 # 2 # 1