10 lines
218 B
Python
10 lines
218 B
Python
import sys
|
|
import os
|
|
from time import sleep
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
from Convention.Runtime.Config import *
|
|
|
|
PrintColorful(ConsoleFrontColor.RED, "Hello, World!")
|
|
|