#!/usr/local/bin/perl -w
use strict;
use Tk;

my $mw = MainWindow->new;
$mw->Button(-text => 'Quit', -command => [destroy => $mw])->pack;
MainLoop;

