From a9f6d1668b70cb1246c8d44849b34db4a08e7737 Mon Sep 17 00:00:00 2001 From: Michael Alfaro Date: Tue, 18 Feb 2020 20:29:44 +0000 Subject: [PATCH] Done. --- lib/meal_choice.rb | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index 95220c42..86b33c92 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1,2 +1,10 @@ # Your code here -# For output purposes, use "puts" instead of "print" or "p" \ No newline at end of file +# For output purposes, use "puts" instead of "print" or "p" + +def meal_choice(veg1, veg2, protein = "meat") + puts "What a nutritious meal!" + puts "A plate of #{protein} with #{veg1} and #{veg2}." + return "A plate of #{protein} with #{veg1} and #{veg2}." +end + +meal_choice("broccoli", "macoroni", "tofu") \ No newline at end of file