8 lines
105 B
Perl
8 lines
105 B
Perl
use strict;
|
|
use warnings;
|
|
use Tk;
|
|
|
|
sub get_size {
|
|
my $mw = MainWindow->new();
|
|
return ($mw->maxsize);
|
|
}
|