Last active
July 26, 2016 13:30
-
-
Save nelantone/0ed57a399959f749d7701dc640059078 to your computer and use it in GitHub Desktop.
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 '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