O recurso está a ser carregado... Carregamento...

Iniciação

O usuário implementa a função de inicializaçãoinit(), que executará automaticamente a funçãoinit()no início da estratégia para completar a tarefa de inicialização.

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!");
}
- Não, não. Erro (a)