Help for this page

Select Code to Download


  1. or download this
    %functions = (
      '?' => 0,
    ...
    );
    # have to initialize this outside declaration of %functions
    $functions{'?'} = $functions{'HELP'};
    
  2. or download this
    while(<>) {
      $func = $_;
    ...
        print "\"$func\" not defined\n";
      }
    }
    
  3. or download this
        &$functions{$func};
    
  4. or download this
        my $code;
        $code = $functions{$func};
        &$code;