Synopsis Return a string with all characters in reverse order.
Function str reverse(str s)
Usage import String;
Description Returns string with all characters of string s
in reverse order.
Examples rascal>import String;
ok
rascal>reverse("abc");
str: "cba"