6 lines
138 B
Text
6 lines
138 B
Text
function reverseString S
|
|
repeat with i = length(S) down to 1
|
|
put char i of S after R
|
|
end repeat
|
|
return R
|
|
end reverseString
|