update daily menu

This commit is contained in:
eckertan 2025-09-16 13:38:51 +02:00
parent 7cc4090cbe
commit 789598c26c

View file

@ -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()
```