2025-07-09 17:39:50 +08:00
|
|
|
import sys
|
|
|
|
import os
|
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
|
|
|
|
from Convention.Runtime.Config import *
|
2025-07-10 15:08:20 +08:00
|
|
|
from Convention.Runtime.EasySave import *
|
|
|
|
|
2025-07-21 14:19:27 +08:00
|
|
|
class Test:
|
|
|
|
test_field:int = 10
|
|
|
|
class_test_field:int = 20
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.test_field:int = 0
|
2025-07-09 17:39:50 +08:00
|
|
|
|
|
|
|
def run():
|
2025-07-21 14:19:27 +08:00
|
|
|
print(Test.__annotations__)
|
2025-07-09 17:39:50 +08:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
run()
|