Skip to content

Instantly share code, notes, and snippets.

@Bjacksonshorts
Created October 14, 2013 19:34
Show Gist options
  • Save Bjacksonshorts/6980863 to your computer and use it in GitHub Desktop.
Save Bjacksonshorts/6980863 to your computer and use it in GitHub Desktop.
alpha = "abcdefghijklmnopqrstuvwxyz"
key = 2
puts "what is your input"
name = gets.chomp
for i in alpha.split("")
c = name.split("")[alpha.index(i)]
o = alpha.index(c)
m = o + key
p = alpha.split("")[m]
puts p
end
# p = alpha.split("")[m]
# puts p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment