From 08810c9d6fd6dce9d4fbc9abcb82a38766cac790 Mon Sep 17 00:00:00 2001 From: Hasibul Chowdhury Date: Mon, 21 Oct 2019 21:25:39 +0000 Subject: [PATCH] Done. --- lib/meal_choice.rb | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index fce62c1..989dfdd 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1 +1,8 @@ # 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