RosettaCodeData/Task/Reverse-a-string/AppleScript/reverse-a-string.applescript
2015-11-18 06:14:39 +00:00

5 lines
111 B
AppleScript

reverseString("Hello World!")
on reverseString(str)
reverse of characters of str as string
end reverseString