리소스 로딩... 로딩...

init()

사용자가 초기화 함수를 구현init(), 자동으로 기능을 실행합니다init()초기화 작업을 완료하기 위한 전략의 시작.

function main(){
    Log("The first line of the code executed in the program!", "#FF0000")
    Log("Exit!")
}

// Initialization the function
function init(){     
    Log("Initialization!")
}
def main():
    Log("The first line of the code executed in the program!", "#FF0000")
    Log("Exit!")

def init():
    Log("Initialization!")
void main() {
    Log("The first line of the code executed in the program!", "#FF0000");
    Log("Exit!");
}

void init() {
    Log("Initialization!");
}
1번 출력 (() 실수입니다.