Rename main.py to main.py

This commit is contained in:
PeterGuek
2024-07-24 07:19:44 -07:00
committed by GitHub
parent 479dffb653
commit e10f173dec

8
Exercice08/main.py Normal file
View File

@@ -0,0 +1,8 @@
def log_decorator(func):
pass
@log_decorator
def function_test():
print("Cette fonction ne prend pas d'arguments.")
function_test()