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

use Tk;
use lib 'alpha';
use Tk::MenuEntry;

$mw = new MainWindow;

$menue = $mw->MenuEntry();

$menue->pack(-side => 'top', -fill => 'x');

$menue->listInsert(0,qw(One Two Three));

Tk::MainLoop;