Skip to content

Instantly share code, notes, and snippets.

@FrankWiebe
Created August 17, 2015 19:23
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 FrankWiebe/d9c8043cf680125a456b to your computer and use it in GitHub Desktop.
Save FrankWiebe/d9c8043cf680125a456b to your computer and use it in GitHub Desktop.
Exercise 23
def fav_foods
food_array = []
3.times do
puts "Name of favorite food."
p food_array << gets.chomp
end
puts "Your favorite 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