RosettaCodeData/Task/Reverse-words-in-a-string/Sparkling/reverse-words-in-a-string.sparkling
2016-12-05 23:44:36 +01:00

20 lines
501 B
Text

let lines = split("---------- 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 -----------------------", "\n");
foreach(lines, function(idx, line) {
let words = split(line, " ");
let reverseWords = map(words, function(idx) { return words[sizeof words - idx - 1]; });
foreach(reverseWords, function(idx, word) {
printf("%s ", word);
});
print();
});