Les ressources ont été chargées... Je charge...

init (()

L'utilisateur implémente la fonction d'initialisationinit(), qui exécutera automatiquement la fonctioninit()au début de la stratégie pour compléter la tâche d'initialisation.

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!");
}
Une sortie Une erreur.