RETURNS THE STRING S WITH REVERSED CHARACTER ORDER
ACTION
The function REVERSE$(S) returns a string returns a string in which the character order of S is reversed.
Remark: the keyword REVERSE$ ends by '$' : it means that the returned value is a string.
SYNTAX:
Result$=REVERSE$(S)
USE ERROR EXAMPLE
print reverse$("Hello")
print "olleH"
REVERSE$()
REVERSE$(S)
SEE ALSO
INSERT$()
LEFT$()
LOWER$()
LTRIM$()
MID$()
RTRIM$()
STR$()
STRING$()
TRIM$()
UPPER$()