Skip to content

Instantly share code, notes, and snippets.

@ThisBenRoberts
Created August 6, 2015 01:40
Show Gist options
  • Select an option

  • Save ThisBenRoberts/311f49c05dfa120115f5 to your computer and use it in GitHub Desktop.

Select an option

Save ThisBenRoberts/311f49c05dfa120115f5 to your computer and use it in GitHub Desktop.
my_cf_project_final_copy_ex_23
def fav_foods
food_array = []
3.times do
puts "Name a favorite food."
food_array << gets.chomp
end
p food_array
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