programming-examples/perl/GUI/Create Polygon.pl
2019-11-15 12:59:38 +01:00

16 lines
258 B
Perl

use Tk;
$main = MainWindow->new;
$canvas1 = $main->Canvas('-width' => 400,
-height => 200
)->pack;
$canvas1->create ('polygon', '85', '105', '105',
'85', '125', '105', '105', '125', '85', '105',
-fill => 'black');
MainLoop;