From 9d6f80c88a03c2a283027ee7be18298d85fa2abc Mon Sep 17 00:00:00 2001 From: Karen Daniela Date: Sun, 12 Jan 2020 16:55:21 +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 95220c42..8aee1635 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 +# For output purposes, use "puts" instead of "print" or "p" +def meal_choice(veg1, veg2, protein='meat') + puts "What a nutritious meal" + puts "A plate of #{protein} with #{veg1} and #{veg2}." +end +puts "A plate of #{protein} with #{veg1} and #{veg2}."