Skip to content

Instantly share code, notes, and snippets.

@SMaguina
Created May 14, 2015 03:15
Show Gist options
  • Save SMaguina/a6322bb97869aa6d7926 to your computer and use it in GitHub Desktop.
Save SMaguina/a6322bb97869aa6d7926 to your computer and use it in GitHub Desktop.
Lesson 3 - Ruby
def fav_foods
food_array = []
3.times do
puts "Name a favorite food."
food_array << gets.chomp
end
puts "Your favorite foods are #{food_array.join(", ")}."
food_array.each do |food|
puts "I like #{food} too!"
end
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment