Create main.py

This commit is contained in:
PeterGuek 2024-07-19 20:48:37 -07:00 committed by GitHub
parent 80ad82ff9a
commit 5e38bf2e40
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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()