Help for this page

Select Code to Download


  1. or download this
    my %h = (
        HELP => $_ = sub {print "help\n"},
        "?"  => $_,
        SAVE => sub {print "save\n"},
    );
    
  2. or download this
    my ($help, $save);
    my %h = (
    ...
        SAVE => $save = sub {print "save\n"},
        EXIT => $save,
    );