Created
October 30, 2016 10:26
-
-
Save tiagodealmeida/ec691bf6d74cfa22261d6e6107fde750 to your computer and use it in GitHub Desktop.
task 3.3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def fav_foods | |
food_array = [] | |
3.times do | |
puts "Name a favorite food." | |
food_array << gets.chomp | |
end | |
puts "You favorite foods are #{food_array.join(", ")}." | |
p food_array | |
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