Files
Convention-Python/[Test]/test.py

10 lines
218 B
Python
Raw Normal View History

2025-07-09 17:39:50 +08:00
import sys
import os
2025-09-30 10:40:58 +08:00
from time import sleep
2025-07-09 17:39:50 +08:00
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
2025-10-21 09:34:26 +08:00
from Convention.Runtime.Config import *
2025-09-30 10:40:58 +08:00
2025-10-21 09:34:26 +08:00
PrintColorful(ConsoleFrontColor.RED, "Hello, World!")
2025-07-10 15:08:20 +08:00