3 lines
97 B
Text
3 lines
97 B
Text
cStr = "asdf" cStr2 = ""
|
|
for x = len(cStr) to 1 step -1 cStr2 += cStr[x] next
|
|
See cStr2 # fdsa
|