Help for this page

Select Code to Download


  1. or download this
    sub called
    {
    ...
    }
    
    my $button = new Button( name=>'foo', callback=>\&called );
    
  2. or download this
    class MyButton;
    use Base 'Button';
    ...
    
    package main;
    my $button = new MyButton();