Help for this page

Select Code to Download


  1. or download this
    $mw->Button(-text => "print", -command=> sub {print @a })->pack;
    
  2. or download this
    $mw->Button(-text => "print", -command => \&print_it);
    
  3. or download this
    sub print_it() {
        print @a;
    }