RosettaCodeData/Task/Rot-13/Pike/rot-13.pike

7 lines
87 B
Plaintext

import Crypto;
int main(){
string r = rot13("Hello, World");
write(r + "\n");
}