From 1a03e181ac6d20590fcdf579286bb623fd1ce334 Mon Sep 17 00:00:00 2001 From: James Schaffer Date: Tue, 10 Sep 2019 18:18:25 +0000 Subject: [PATCH] Done. --- lib/meal_choice.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index fce62c1..0803602 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1 +1,5 @@ -# Your code here +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 \ No newline at end of file