Skip to content

Instantly share code, notes, and snippets.

@steamgeek7
Created January 23, 2019 00:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save steamgeek7/2aa75bff6f8a8b13b1149ab175e6336c to your computer and use it in GitHub Desktop.
Save steamgeek7/2aa75bff6f8a8b13b1149ab175e6336c to your computer and use it in GitHub Desktop.
Fav_Foods.rb
def fav_foods
food_array=[]
3.times do
puts "Name your favorite food."
food_array << gets.chomp
end
p food_array
food_array.each { |food| puts "I like #{food} too!" }
puts "Your favorite foods are #{food_array.join(", ")}."
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment