9 lines
102 B
Perl
9 lines
102 B
Perl
use Tk;
|
|
|
|
my $main = MainWindow->new;
|
|
|
|
$main->Label(-bitmap => 'gray75')->pack;
|
|
|
|
MainLoop;
|
|
|
|
|