To properly display this page you need a browser with JavaScript support.
HTBasic Help
×
Menu
Index
Search
Search
HTBasic Example Programs
rev$ EXAMPLE
Previous page
Next page
Print version
(c) TransEra Corp, 2021
To properly display this page you need a browser with JavaScript support.
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