Skip to content

Instantly share code, notes, and snippets.

@makimoto
Created March 30, 2015 05:11
Show Gist options
  • Save makimoto/ea485f91e7d8aa723f1e to your computer and use it in GitHub Desktop.
Save makimoto/ea485f91e7d8aa723f1e to your computer and use it in GitHub Desktop.
def rot13(str)
str.tr("a-zA-Z", "n-za-mN-ZA-M")
end
ARGF.each do |line|
puts rot13(line)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment