Skip to content

Instantly share code, notes, and snippets.

@nelantone
Last active July 26, 2016 13:30
Show Gist options
  • Save nelantone/0ed57a399959f749d7701dc640059078 to your computer and use it in GitHub Desktop.
Save nelantone/0ed57a399959f749d7701dc640059078 to your computer and use it in GitHub Desktop.
3.3
def fav_foods
food_array = []
3.times do
puts 'please choose your favorite food'
food_array << gets.chomp
end
puts "Your favorite foods are #{food_array}.join(', ')."
p food_array
# food_array.each do |food|
# puts 'I like #{food} too!'
# end
food_array.each {|food| puts "I loke #{food} too!"}
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment