<?php declare(strict_types=1);
use Tkui\Widgets\Frame;
use Tkui\Widgets\Buttons\Button;
require_once dirname(__FILE__) . '/DemoAppWindow.php';
$win = new DemoAppWindow('button test');
$f = new Frame($win);
$win->pack($f);
$f->pack(new Button($f, 'test'));
$win->run();
function test()
{}