RosettaCodeData/Task/Window-creation/Perl/window-creation-3.pl

9 lines
159 B
Perl
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
use Gtk3 '-init';
2013-04-11 01:07:29 -07:00
2019-09-12 10:33:56 -07:00
$window = Gtk3::Window->new;
2013-04-11 01:07:29 -07:00
$window->signal_connect(
2019-09-12 10:33:56 -07:00
destroy => sub { Gtk3->main_quit; }
2013-04-11 01:07:29 -07:00
);
$window->show_all;
2019-09-12 10:33:56 -07:00
Gtk3->main;