Skip to content

Instantly share code, notes, and snippets.

@epson121
Last active December 11, 2015 10:28
Show Gist options
  • Save epson121/4586613 to your computer and use it in GitHub Desktop.
Save epson121/4586613 to your computer and use it in GitHub Desktop.
'''
Rot13 implementation in ruby
21.01.2013.
'''
def a(s)
s.tr("A-MN-Z","N-ZA-M")
end
p a("ASDDSAZZZ")
p a("ABCDEFGHIJKLMNOPQRSTUVWXYZ")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment