rev$ Example
10 DIM Test$[30]
20 Test$="This is the string to reverse"
30 CLEAR SCREEN
40 PRINT Test$
50 PRINT
60 PRINT REV$(Test$) !Reverse the string.
70 END