From 974ce6f753fbd82e089eb293c63245f745412660 Mon Sep 17 00:00:00 2001 From: Ian King Date: Thu, 22 Apr 2021 16:09:45 +0000 Subject: [PATCH] Done. --- lib/meal_choice.rb | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index 95220c42..bad011a7 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1,2 +1,8 @@ # 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!" + puts "A plate of #{protein} with #{veg1} and #{veg2}." + return "A plate of #{protein} with #{veg1} and #{veg2}." +end \ No newline at end of file