Skip to content

Instantly share code, notes, and snippets.

@tengiao
Created June 20, 2018 23:31
Show Gist options
  • Save tengiao/6c377aae720bc86f897652473215b18c to your computer and use it in GitHub Desktop.
Save tengiao/6c377aae720bc86f897652473215b18c to your computer and use it in GitHub Desktop.
CareerFoundry3_3_DataStructures
def fav_foods
food_array = []
3.times do
puts "Name a favourite food."
food_array << gets.chomp
end
p food_array
puts "Your favourite foods are #{food_array.join(", ")}."
food_array.each { |food| puts "I like #{food} too!" }
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment