work on v0.3.0

This commit is contained in:
2025-02-18 23:35:36 +03:00
parent a9e545f3d8
commit a3a7cbf2e6
17 changed files with 117 additions and 51 deletions
+8 -5
View File
@@ -1,6 +1,9 @@
from typing import Literal, LiteralString
class Entity:
pass
x: LiteralString = '---'
m: LiteralString = input()
if m == '-':
x = m
class Person(Entity):
pass
a: Entity = Entity()
print(a)
a = Person()