Help for this page

Select Code to Download


  1. or download this
    use constant HELP_KEY => chr( 8 ); ## Control H
    
    if( HELP_KEY() eq $key ) {
      ## . . .
    }
    
  2. or download this
    use Readonly;
    
    ...
    if( $HELP_KEY eq $key ) {
      ## . . .
    }