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

6 lines
80 B
Perl
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
sub rot13 {
2015-02-20 00:35:01 -05:00
shift =~ tr/A-Za-z/N-ZA-Mn-za-m/r;
2013-04-10 23:57:08 -07:00
}
print rot13($_) while (<>);