hello_world.py 187 B

123456789101112131415
  1. """
  2. Implementation de Hello World
  3. Usage:
  4. >>> from hello_world import main
  5. >>> main()
  6. """
  7. def main():
  8. return "Hello World!"
  9. if __name__ == "__main__":
  10. print(main())