RosettaCodeData/Task/Reverse-a-string/AppleScript/reverse-a-string.applescript

6 lines
111 B
AppleScript

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