RosettaCodeData/Task/Reverse-a-string/LiveCode/reverse-a-string.livecode

7 lines
138 B
Plaintext

function reverseString S
repeat with i = length(S) down to 1
put char i of S after R
end repeat
return R
end reverseString