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

8 lines
148 B
Plaintext

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