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

9 lines
146 B
Perl
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
use strict;
use warnings;
2015-02-20 00:35:01 -05:00
use QtGui4;
2013-04-10 21:29:02 -07:00
2015-02-20 00:35:01 -05:00
my $app = Qt::Application(\@ARGV);
my $label = Qt::Label('Goodbye, World');
$label->show;
exit $app->exec;