mirror of
https://github.com/koloideal/Argenta.git
synced 2026-06-10 10:05:28 +03:00
9 lines
98 B
Python
9 lines
98 B
Python
class Entity:
|
|
pass
|
|
|
|
class Person(Entity):
|
|
pass
|
|
|
|
a: Entity = Entity()
|
|
print(a)
|
|
a = Person() |