diff --git a/lib/meal_choice.rb b/lib/meal_choice.rb index 95220c42..0f733820 100644 --- a/lib/meal_choice.rb +++ b/lib/meal_choice.rb @@ -1,2 +1,10 @@ # 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 meal_choice +end + +meal_choice("carrots", "string beans", "lentils")