You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;