7 lines
122 B
Perl
7 lines
122 B
Perl
use strict;
|
|
use warnings;
|
|
use Tk;
|
|
|
|
my $main = MainWindow->new;
|
|
$main->Label(-text => 'Goodbye, World')->pack;
|
|
MainLoop();
|