RosettaCodeData/Task/Reverse-a-string/AppleScript/reverse-a-string-1.applescript
2023-07-01 13:44:08 -04:00

5 lines
114 B
AppleScript

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