Help for this page

Select Code to Download


  1. or download this
    sub NAME {
      EXPR;
    ...
      EXPR;
    }
    if (EXPR) { EXPR }
    
  2. or download this
    if (EXPR) {
      EXPR
    ...
    else {
      EXPR
    }
    
  3. or download this
    foo(1,2,3);
    bar({
      a => $str,
      b => $trs,
    });