wow this was complete garbage!

This commit is contained in:
2026-04-01 13:02:45 +01:00
parent 3ad71e48a4
commit 211f8cec11
13 changed files with 1007 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
########################################################
# MIGRATION NOTE: wow yeah you can tell this is from a #
# programming class #
########################################################
def cooking():
print("Meal planner")
print()
print("1. Chicken curry ")
print("2. Veggie lasagne")
print("3. Burger and salad")
print()
print("Which of these meals is your favourite? (1, 2 or 3) ")
answer = input()
if answer == "1":
print("Chicken curry coming up")
elif answer == "2":
print("Veggie lasagne coming up")
else:
print("Burger and salad coming up!")
print("Enjoy!")
cooking()