From fa93f1d849ab194bafdd8a202005e525b6889a43 Mon Sep 17 00:00:00 2001 From: annie_truex Date: Wed, 2 Dec 2020 13:48:45 -0800 Subject: [PATCH] Done. --- lib/meal_choice.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index 95220c42..221f7733 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1,2 +1,9 @@ # 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="tofu") + puts "What a nutritious meal!" + meal = "A plate of #{protein} with #{veg1} and #{veg2}." + puts meal + return meal +end \ No newline at end of file