Help for this page

Select Code to Download


  1. or download this
     -command => sub { numpress( $i ) }
    # equals 
     -command => [ \&numpress, $i ]
    
  2. or download this
    $top->protocol( DELETE_WINDOW',
        [\&my_clean_up_routine, $top, $another_parameter] );
    
    [download]