The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!perl -w
use strict;
use Tk;
my $mw = MainWindow->new;
my $menu = $mw->menu;
$menu->cascade(-label => "Added",-underline => 0, -menuitems => [
                 [Button => 'Exit', -underline => 1, -command => [destroy => $mw]],
               ]); 
$mw->Button(-text => "Press this button to Quit\nthe Appliation",
            -command => [destroy => $mw])->pack;
MainLoop;