Skip to content
Snippets Groups Projects
Select Git revision
  • master
1 result

pom.xml

Blame
  • Forked from Yvan Peter / rest-tutoriel
    Source project has a limited visibility.
    exercice1.py 190 B
    #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