Help for this page

Select Code to Download


  1. or download this
    use Tk;
    
    ...
        $mw->Button(-text=>"Button $index", -command => sub {print $index}
    +)->pack();
    }
    MainLoop;
    
  2. or download this
    use Tk;
    
    ...
        $mw->Button(-text=>"Button $_", -command => sub {print $_})->pack(
    +);
    }
    MainLoop;