From 590083062d458a7a24a98e35923fae6367baec0d Mon Sep 17 00:00:00 2001 From: fair-laptop-5201 Date: Wed, 8 Jan 2020 04:56:49 +0000 Subject: [PATCH] Done. --- lib/meal_choice.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index 95220c42..bb1c521c 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1,2 +1,6 @@ -# 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}." +end + +meal_choice("carrot", "tomato") \ No newline at end of file