Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Tk;
    ...
    my $mw = MainWindow->new( -height => 100, -width => 350);
    $mw->title ("Hello, world!");
    MainLoop;
    
  2. or download this
    use strict;
    use Wx;
    ...
    
    my( $app ) = MyApp->new();
    $app->MainLoop();