The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/local/bin/perl -w

#
# Figure 15.5, p153
#

use Tk;

my $mw = MainWindow->new;
my $top = $mw->Button(-text => 'Top button');
$top->pack;
my $bottom = $mw->Button(-text => 'Bottom button');
$bottom->pack;

MainLoop;