Sha256: cdffee5a4d10a1543f761fccd7a982ed153dd838ad5db0bee940e7b3a98365a2
Contents?: true
Size: 282 Bytes
Versions: 19
Compression:
Stored size: 282 Bytes
Contents
#!/usr/bin/env ruby normal = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" rot13 = "nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM" STDIN.each_char do |char| candidate = char.tr!(normal, rot13) if candidate print candidate else print char end end
Version data entries
19 entries across 19 versions & 1 rubygems