RosettaCodeData/Task/Hello-world-Graphical/Sidef/hello-world-graphical-1.sidef

8 lines
148 B
Text
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
var tk = require('Tk')
var main = %O<MainWindow>.new
2023-07-01 11:58:00 -04:00
main.Button(
'-text' => 'Goodbye, World!',
'-command' => 'exit',
2023-12-16 21:33:55 -08:00
).pack
tk.MainLoop