#!/usr/bin/perl -w
use Qt;
use QPushButton;

$hello = new QPushButton('Hello world!');
$hello->resize(100, 30);

$qApp->setMainWidget($hello);
$hello->show();
exit $qApp->exec();
