Skip to content

Instantly share code, notes, and snippets.

@Adsidera
Created October 10, 2015 10:18
Show Gist options
  • Save Adsidera/449036cf33a123776a19 to your computer and use it in GitHub Desktop.
Save Adsidera/449036cf33a123776a19 to your computer and use it in GitHub Desktop.
Fav.foods.rb
def fav_foods
food_array = []
3.times do
puts "Name a favorite food"
food_array<< gets.chomp #shovel operator - takes the user inputs with gets.chomp and makes them elements of the array food_array#
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