Skip to content

Instantly share code, notes, and snippets.

@kajatiger
Created October 19, 2016 20:28
Show Gist options
  • Save kajatiger/6d4056f8ba3d726ca7a5abad6eecaee2 to your computer and use it in GitHub Desktop.
Save kajatiger/6d4056f8ba3d726ca7a5abad6eecaee2 to your computer and use it in GitHub Desktop.
iterating through favorite foods
def fav_foods
food_ary = Array.new
3.times do
puts "name a favorite food"
food_ary << gets.chomp
food_ary.each do |food|
puts "I like #{food} too!"
end
end
puts "your favorite foods are #{food_ary.join(", ")}."
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment