8 lines
89 B
Perl
8 lines
89 B
Perl
use Tk;
|
|
|
|
my $main = MainWindow->new;
|
|
|
|
my $entry1 = $main->Entry->pack;
|
|
|
|
MainLoop;
|