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

9 lines
146 B
Perl
Raw Permalink Normal View History

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