Help for this page

Select Code to Download


  1. or download this
    my %disp_table = ( something => \&do_something );
    
  2. or download this
    $disp_table{'something'}->();
    
  3. or download this
    ($disp_table{'not there'} || sub {})->();
    
  4. or download this
        one   => sub { print "Number!\n" },
        two   => sub { print "Number!\n" },
        three => sub { print "Number!\n" },
    
  5. or download this
        one   => sub { print "The loneliest "; number() },
        two   => \&number,
        three => \&number,