diff --git a/teste_cla.txt b/teste_cla.txt index 93fb6b9..974e0bd 100644 --- a/teste_cla.txt +++ b/teste_cla.txt @@ -1 +1,9 @@ -Teste. +import random + +def testar_repositorio(): + numeros = [random.randint(1, 100) for _ in range(5)] + print("Testando o commit no arquivo teste_cla.txt!") + print(f"Aqui estão alguns números aleatórios: {numeros}") + +if __name__ == "__main__": + testar_repositorio()