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

6 lines
114 B
AppleScript

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