From 7d97edcf16910355dd8f7c5a3f918e0ec448ee66 Mon Sep 17 00:00:00 2001 From: Didictateur Date: Mon, 9 Feb 2026 10:54:48 +0100 Subject: [PATCH] tried hello world --- ronrunner_1.0~beta1-1/usr/bin/ronrunner | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/ronrunner_1.0~beta1-1/usr/bin/ronrunner b/ronrunner_1.0~beta1-1/usr/bin/ronrunner index e420326..317bb83 100755 --- a/ronrunner_1.0~beta1-1/usr/bin/ronrunner +++ b/ronrunner_1.0~beta1-1/usr/bin/ronrunner @@ -2,4 +2,11 @@ from tkinter import * from tkinter import ttk -print("Work in progress") \ No newline at end of file + +root = Tk() +frm = ttk.Frame(root, padding=10) +frm.grid() +ttk.Label(frm, text="Hello World").grid(column=0, row=0) +ttk.Button(frm, text="Quit", command=root.destroy).grid(column=1, row=0) + +root.mainloop()