Skip to content

Instantly share code, notes, and snippets.

@msztolcman
Created May 15, 2013 01:21
Show Gist options
  • Save msztolcman/5581007 to your computer and use it in GitHub Desktop.
Save msztolcman/5581007 to your computer and use it in GitHub Desktop.
package Rot13;
use 5.010;
use Filter::Simple;
FILTER {
if ($_ =~ s/^!//mg) {
$_ =~ tr/a-zA-Z/n-za-mN-ZA-N/;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment