Help for this page

Select Code to Download


  1. or download this
    my $sub = \&{'do_'.$type};
    $sub->();
    
  2. or download this
    (\&{'do_'.$type})->();
    
  3. or download this
    my $sub = \&{'do_'.$type};
    die "Unknown sub 'do_$type'" unless defined(&$sub);