Help for this page

Select Code to Download


  1. or download this
    sub do_x {
      print "processing x\n";
    ...
    }
    
    my %subs = ( x => \&do_x, y => \&do_y );
    
  2. or download this
    $subs{$type}->();