Skip to content

Instantly share code, notes, and snippets.

@Solnse
Created December 14, 2012 22:09
Show Gist options
  • Save Solnse/4289121 to your computer and use it in GitHub Desktop.
Save Solnse/4289121 to your computer and use it in GitHub Desktop.
def translate(word)
@word = word.to_s
result = ""
if word[0].include?(%w{a e i o u})
result << @word + "ay"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment