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

6 lines
114 B
AppleScript
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
reverseString("Hello World!")
2013-04-10 23:57:08 -07:00
2015-11-18 06:14:39 +00:00
on reverseString(str)
2016-12-05 22:15:40 +01:00
reverse of characters of str as string
2015-11-18 06:14:39 +00:00
end reverseString