6 lines
114 B
AppleScript
6 lines
114 B
AppleScript
|
|
reverseString("Hello World!")
|
||
|
|
|
||
|
|
on reverseString(str)
|
||
|
|
reverse of characters of str as string
|
||
|
|
end reverseString
|