mirror of
https://github.com/lucaspalomodevelop/Party.git
synced 2026-03-13 08:09:37 +00:00
18 lines
329 B
Python
18 lines
329 B
Python
""" important """
|
|
|
|
# mws = matewirtschaftssystem
|
|
def mws():
|
|
""" manage mate """
|
|
print("Mate")
|
|
|
|
def materechner():
|
|
""" calculate mate """
|
|
print("eine Mate haha")
|
|
|
|
def mate_logik(sorte, anzahl):
|
|
""" mate logic """
|
|
print("ich kann denken")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
print("Use main.py to use program") |