8 lines
95 B
Perl
8 lines
95 B
Perl
|
use Tk;
|
||
|
|
||
|
my $main = MainWindow->new;
|
||
|
|
||
|
$main->Label(-text => 'Hello!'
|
||
|
)->pack;
|
||
|
|
||
|
MainLoop;
|