Sophie

Sophie

distrib > Mageia > 5 > i586 > media > core-release > by-pkgid > d38b97c69a3fd47b351add70f89a7ab5 > files > 916

perl-qt4-examples-4.14.3-1.mga5.noarch.rpm

#!/usr/bin/perl -w

use strict;
use warnings;

package main;

use QtCore4;
use QtGui4;
use GameBoard;

sub main {
    my $app = Qt::Application( \@ARGV );
    my $widget = GameBoard();
    $widget->setGeometry(100, 100, 500, 355);
    $widget->show();
    return $app->exec();
} 

main();