Skip to content

Instantly share code, notes, and snippets.

View maxluzuriaga's full-sized avatar

Max Luzuriaga maxluzuriaga

View GitHub Profile
puts "Welcome back!"
result = ""
until result == "quit"
print "> "
result = gets.chomp
result_array = result.split(' ').each do |word|
word.downcase!
proper_nouns = ["ecuador", "diego", "luzuriaga"]
word.capitalize! if proper_nouns.include?(word)
end