Help for this page

Select Code to Download


  1. or download this
    %hash = (
      HELP => sub { ... },
    ...
      EXIT => $_{QUIT},
      LEAVE => $_{QUIT},
    );
    
  2. or download this
    %hash = (
      HELP => sub { ... },
    ...
    );
    $hash{'?'} = $hash{HELP};
    $hash{EXIT} = $hash{LEAVE} = $hash{QUIT};