The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
use strict;
use warnings;

use Gtk2 '-init';


use Gapp;
use Gapp::Actions::Basic qw( Quit );

my $window = Gapp::Window->new(
    title => 'Gapp Application',
    signal_connect => [
        ['delete-event', Quit ]
    ],
    content => [
        Gapp::Label->new( text => 'Hello world!' ),
    ]
);

$window->show_all;

Gtk2->main;