From 789598c26c41a766d00f2f25ef24e8603677c871 Mon Sep 17 00:00:00 2001 From: eckertan Date: Tue, 16 Sep 2025 13:38:51 +0200 Subject: [PATCH] update daily menu --- exercises/Exercise 1a Local imports.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/Exercise 1a Local imports.md b/exercises/Exercise 1a Local imports.md index 3ef038f..2a29109 100644 --- a/exercises/Exercise 1a Local imports.md +++ b/exercises/Exercise 1a Local imports.md @@ -19,10 +19,10 @@ We are simulating having code in one folder and calling the code from the folder def todays_special(): pizza_margherita = make_margherita_pizza() - schorle = make_apfelschorle() + lemonade = make_lemonade() - print("Today's special is ready! Buon Appetito!") - return pizza_margherita, schorle + print("Today's special is ready! Buon Appetito!\n") + return pizza_margherita, lemonade pizza, drink = todays_special() ```