RosettaCodeData/Task/Rot-13/Perl/rot-13-1.pl

6 lines
80 B
Perl

sub rot13 {
shift =~ tr/A-Za-z/N-ZA-Mn-za-m/r;
}
print rot13($_) while (<>);