Skip to content

Instantly share code, notes, and snippets.

@AttyC
Created June 8, 2015 13:51
Show Gist options
  • Save AttyC/e729503510a1ffb631aa to your computer and use it in GitHub Desktop.
Save AttyC/e729503510a1ffb631aa to your computer and use it in GitHub Desktop.
def fav_foods
food_array = []
3.times do
puts "Name a favourite food"
food_array << gets.chomp
p food_array
puts "Your favourite foods are #{food_array.join(", ")}."
food_array.each do |food|
puts "I like #{food} too!"
end
end
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment