RosettaCodeData/Task/Rot-13/Oforth/rot-13.fth

6 lines
168 B
Forth
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
: encryptRot13(c)
c dup isLetter ifFalse: [ return ]
isUpper ifTrue: [ 'A' ] else: [ 'a' ] c 13 + over - 26 mod + ;
: rot13 map(#encryptRot13) charsAsString ;