From a22d8a83654132b2168e70d9ba13975c947201e5 Mon Sep 17 00:00:00 2001 From: Ichbinus <151060943+Ichbinus@users.noreply.github.com> Date: Fri, 3 May 2024 14:39:15 +0200 Subject: [PATCH] commit --- hello-world/hello,world.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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