Help for this page

Select Code to Download


  1. or download this
    $userInput = <STDIN>;
    chomp $userInput;
    $userInput = uc $userInput;
    
  2. or download this
    my %pbactions = (
        L    => \&list_phone_book,
    ...
    
    defined $pbactions{$userInput} ? $pbactions{$userInput}->()
                                   : usage();