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