adds 2025 materials
This commit is contained in:
commit
e85b3b21ca
23 changed files with 378 additions and 0 deletions
11
src/italianfood/drinks.py
Normal file
11
src/italianfood/drinks.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
class Schorle:
|
||||
juice: str
|
||||
|
||||
def __init__(self, juice):
|
||||
self.name = f"{juice}schorle"
|
||||
|
||||
|
||||
def make_apfelschorle():
|
||||
print("Mixing a delicious Apfelschorle!\n...")
|
||||
apfelschorle = Schorle(juice="apple")
|
||||
return apfelschorle
|
Loading…
Add table
Add a link
Reference in a new issue