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