RosettaCodeData/Task/Hello-world-Graphical/Perl/hello-world-graphical-4.pl

9 lines
146 B
Perl

use strict;
use warnings;
use QtGui4;
my $app = Qt::Application(\@ARGV);
my $label = Qt::Label('Goodbye, World');
$label->show;
exit $app->exec;