En la carga de los recursos... Cargando...

En el caso de los

El usuario implementa la función de inicializacióninit(), que ejecutará automáticamente la funcióninit()al comienzo de la estrategia para completar la tarea de inicialización.

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!");
}
Un exito ¿Qué pasa?