From fd0c71adba8f7fb8acaab8791d478ff1ff702a91 Mon Sep 17 00:00:00 2001 From: Alexis LEBIS <alexis.lebis@imt-nord-europe.fr> Date: Fri, 10 Nov 2023 14:36:35 +0100 Subject: [PATCH] Update exercice1.py --- exercice1.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/exercice1.py b/exercice1.py index 8d9ea35..013c322 100644 --- a/exercice1.py +++ b/exercice1.py @@ -1 +1,9 @@ -#copy past your code here \ No newline at end of file +#copy past your code here +#one function example : +def foo(): + print("Hello World") + +#From here, this is the main of your program +print("I'll call my function foo") +foo() +#End of the prog -- GitLab