Files
python/exercises/clock/clock.py

7 lines
116 B
Python
Raw Normal View History

class Clock(object):
def __init__(self, hour, minute):
pass
def __add__(self, other):
pass