Skip to content

Instantly share code, notes, and snippets.

@ZASMan
Last active October 15, 2015 10:27
Show Gist options
  • Save ZASMan/9dd9eea41bf1cb13c041 to your computer and use it in GitHub Desktop.
Save ZASMan/9dd9eea41bf1cb13c041 to your computer and use it in GitHub Desktop.
fav_foods.rb
def food_array
["IceCream", "Pizza", "Rice"]
end
3.times do
puts "Chicken."
food_array << gets.chomp
end
def fav_foods
p food_array
puts "Your favorite foods are #{food_array.join(", ")}."
end
p fav_foods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment