RosettaCodeData/Task/Hello-world-Graphical/Sidef/hello-world-graphical-1.sidef
2023-12-16 21:33:55 -08:00

7 lines
148 B
Text

var tk = require('Tk')
var main = %O<MainWindow>.new
main.Button(
'-text' => 'Goodbye, World!',
'-command' => 'exit',
).pack
tk.MainLoop