RosettaCodeData/Task/Hello-world-Graphical/Slope/hello-world-graphical.slope
2023-07-01 13:44:08 -04:00

9 lines
198 B
Text

(define gui (gui-create))
(gui-add-window gui "Goodbye")
(window-set-content
gui
"Goodbye"
(container
"max"
(widget-make-label "Goodbye, world!")))
(window-show-and-run gui "Goodbye")