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