the
reverse
of
factor
reverse
(
expression )
Factor and expression yield string
s.
put reverse("hello") -- yields "olleh"
The reverse
function returns the reversal of the specified string
. The last character of the given string
becomes the first character of the resulting string
, and vice versa.