Help for this page

Select Code to Download


  1. or download this
    if (condition1) {
      code_for_condition1($data)
    ...
    } else {
      default_condition($data)
    }
    
  2. or download this
    %despatcher = (
      ident_1 => \*code_for_condition1,
    ...
    sub code_for_condition2 {
      ...
    }