RosettaCodeData/Task/Rot-13/AppleScript/rot-13-1.applescript
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07:00

3 lines
104 B
AppleScript

to rot13(textString)
do shell script "tr a-zA-Z n-za-mN-ZA-M <<<" & quoted form of textString
end rot13