Skip to content

Instantly share code, notes, and snippets.

View Fluffik3666's full-sized avatar
:shipit:
Swift UI time!

Sasha Fluffik3666

:shipit:
Swift UI time!
View GitHub Profile
class Coffee:
def __init__(self, amount_ml=0, capacity_ml=250):
self.amount_ml = amount_ml
self.capacity_ml = capacity_ml
@property
def is_empty(self):
return self.amount_ml <= 0
@property