RosettaCodeData/Task/Reverse-words-in-a-string/Ruby/reverse-words-in-a-string.rb

14 lines
297 B
Ruby
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
puts <<EOS
2015-02-20 09:02:09 -05:00
---------- Ice and Fire ------------
fire, in end will world the say Some
ice. in say Some
desire of tasted I've what From
fire. favor who those with hold I
... elided paragraph last ...
Frost Robert -----------------------
EOS
2015-11-18 06:14:39 +00:00
.each_line.map {|line| line.split.reverse.join(' ')}