Reverse words in a string: Difference between revisions

Content added Content deleted
(→‎{{header|Ruby}}: removing function and making this a single line, effectively)
(Added EchoLisp)
Line 584:
}</lang>
The output is the same as the Python entry.
 
=={{header|EchoLisp}}==
<lang scheme>
(define S #<<
---------- 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 -----------------------
>>#)
(for-each writeln
(for/list ((line (string-split S "\n")))
(string-join (reverse (string-split line " ")) " ")))
------------ Fire and Ice ----------
Some say the world will end in fire,
Some say in ice.
From what I've tasted of desire
I hold with those who favor fire.
... last paragraph elided ...
----------------------- Robert Frost
</lang>
 
=={{header|Elixir}}==