This commit is contained in:
2024-03-03 07:22:42 +03:00
parent 804b658c6e
commit d870f1cffe
27 changed files with 303 additions and 78 deletions

9
test/ockho.py Normal file
View File

@@ -0,0 +1,9 @@
from typing import Annotated
def get_v():
return 123
ockho: Annotated[int, get_v]
print(ockho)