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

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

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