Create main.py

This commit is contained in:
PeterGuek
2024-07-19 20:48:37 -07:00
committed by GitHub
parent 80ad82ff9a
commit 5e38bf2e40

8
Exercice8/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()