Die Ressourcen sind geladen. Beförderung...

Initial

Der Benutzer implementiert die Initialisierungsfunktioninit(), die automatisch die Funktion ausführtinit()Sie werden anfangs der Strategie angezeigt, um die Initialisierungsaufgabe abzuschließen.

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!");
}
Ein Exit ((( Ein Fehler.