Skip to content
Snippets Groups Projects
Select Git revision
  • 46ff7101d853c3969f01f3f46eb64bb11ea538fa
  • master default
  • datenotunique
  • archives
  • lastToucanUrl
  • urltitle-year
  • lets-hope-for-the-best
  • everything-is-fine
  • feature/change-pdf-endpoint
9 results

impression.js

Blame
  • goodbye.py 234 B
    def goodbye():
        nom = str(input("What's your name?"))
        print("Goodbye " + nom)
    
    
    def test():
        # c'est un test
        noms = ["paul", "marc", "mathieu", "luc"]
        for element in noms:
            print(goodbye(element))
    
    
    goodbye()