RosettaCodeData/Task/Hello-world-Graphical/Sidef/hello-world-graphical-1.sidef
2016-12-05 23:44:36 +01:00

7 lines
152 B
Text

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