diff --git a/hello-world/hello,world.py b/hello-world/hello,world.py index bc63dc6..9b32133 100644 --- a/hello-world/hello,world.py +++ b/hello-world/hello,world.py @@ -1 +1,10 @@ -print("hello, world") \ No newline at end of file +# coding: utf-8 + +from tkinter import * + +fenetre = Tk() + +label = Label(fenetre, text="Hello World") +label.pack() + +fenetre.mainloop() \ No newline at end of file