8 lines
97 B
Perl
8 lines
97 B
Perl
|
use Tk;
|
||
|
|
||
|
my $main = MainWindow->new;
|
||
|
|
||
|
$main->Label(-bitmap => 'gray25')->pack;
|
||
|
|
||
|
MainLoop;
|