4 lines
67 B
Python
4 lines
67 B
Python
|
class Figure:
|
||
|
|
||
|
def area(self):
|
||
|
print("Not implemented")
|