Jump to content

Reverse words in a string: Difference between revisions

Added Pike implementation
No edit summary
(Added Pike implementation)
Line 2,663:
 
----------------------- Robert Frost</lang>
 
=={{header|Pike}}==
<lang Pike>string story = #"---------- 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 -----------------------";
 
foreach(story/"\n", string line)
write("%s\n", reverse(line/" ")*" ");
</lang>
 
=={{header|Python}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.