Jump to content

Phrase reversals: Difference between revisions

Added Easylang
(Add Refal)
(Added Easylang)
 
Line 1,163:
2. attesor edoc esarhp lasrever
3. reversal phrase code rosetta </pre>
 
=={{header|EasyLang}}==
<syntaxhighlight>
func$[] rev a$[] .
for i to len a$[] div 2
swap a$[i] a$[$ - i + 1]
.
return a$[]
.
lin$ = "rosetta code phrase reversal"
print strjoin rev strchars lin$
words$[] = strsplit lin$ " "
for w$ in words$[]
write strjoin rev strchars w$
write " "
.
print ""
wordsr$[] = rev words$[]
for w$ in wordsr$[]
write w$ & " "
.
</syntaxhighlight>
{{out}}
<pre>
lasrever esarhp edoc attesor
attesor edoc esarhp lasrever
reversal phrase code rosetta
</pre>
 
=={{header|EchoLisp}}==
2,069

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.