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

use strict;
use warnings;

use Tickit;

use Tickit::Widget::Box;
use Tickit::Widget::Static;

my $box = Tickit::Widget::Box->new(
   bg => "green",
   child_lines => '80%',
   child_cols => '80%',
   child => Tickit::Widget::Static->new(
      text => "Hello, world!",
      align => "centre", valign => "middle",
      bg => "black",
   ),
);

Tickit->new( root => $box )->run;