The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl -w
use Qt 2.0;
#BEGIN { Qt::Application::setColorSpec(Qt::Application::CustomColor) }
use GameBoard;
import Qt::app;

$gb = GameBoard->new;
$app->setMainWidget($gb);
$gb->show();
exit $app->exec();