Skip to content

Instantly share code, notes, and snippets.

@iamwinnie
Created March 28, 2019 20:02
Show Gist options
  • Save iamwinnie/5bb8ccfc45cc8070aab2c7b313dce74b to your computer and use it in GitHub Desktop.
Save iamwinnie/5bb8ccfc45cc8070aab2c7b313dce74b to your computer and use it in GitHub Desktop.
3.3 data structures
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