Skip to content

Instantly share code, notes, and snippets.

@sbernhardi
Created November 10, 2016 15:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sbernhardi/70a89d8641222a65350b85eca755fc46 to your computer and use it in GitHub Desktop.
Save sbernhardi/70a89d8641222a65350b85eca755fc46 to your computer and use it in GitHub Desktop.
CF Ruby 01
def fav_foods
food_array = []
3.times do
puts "Name a favorite food."
food_array << gets.chomp
end
puts "Your favorite foods are #{food_array.join(", ")}."
end
fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment