Sidef

 view release on metacpan or  search on metacpan

scripts/Graphical/hello_world_graphical.sf  view on Meta::CPAN

#!/usr/bin/ruby

#
## https://rosettacode.org/wiki/Hello_world/Graphical
#

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



( run in 0.716 second using v1.01-cache-2.11-cpan-39bf76dae61 )