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