From dccd1249033132316dce4752804512a68a4932eb Mon Sep 17 00:00:00 2001 From: Jean Max Mezalon Date: Sun, 17 Nov 2019 12:01:24 +0000 Subject: [PATCH] Done. --- lib/meal_choice.rb | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index 95220c4..afaf9b6 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1,2 +1,7 @@ # Your code here -# For output purposes, use "puts" instead of "print" or "p" \ No newline at end of file +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 +# For output purposes, use "puts" instead of "print" or "p"