Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    sub pressExitButton {
      $mw->destroy();
    }
    
  2. or download this
    package MyGui;
    use strict;
    ...
    1;
    package main;
    MyGui->new()->run();