RosettaCodeData/Task/Reverse-a-string/00DESCRIPTION

15 lines
226 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
;Task:
Take a string and reverse it.
2013-04-10 23:57:08 -07:00
2016-12-05 22:15:40 +01:00
For example, "asdf" becomes "fdsa".
;Extra credit:
Preserve Unicode combining characters.
For example, "as⃝df̅" becomes "f̅ds⃝a", not "̅fd⃝sa".
{{Template:Strings}}
<br><br>