7 lines
94 B
Perl
7 lines
94 B
Perl
use Tk;
|
|
|
|
my $main = MainWindow->new;
|
|
|
|
$main->Label(-bitmap => 'error')->pack;
|
|
|
|
MainLoop; |