Help for this page

Select Code to Download


  1. or download this
    if (some condition) {
       ... some code ...
    ...
       ... more code ...
       next;                                     # BOTH BRANCHES
    }
    
  2. or download this
    $precords{$product_key}{"total_count"}++;
    if (some condition) {
    ...
       ... more code ...
    }
    next;
    
  3. or download this
    for {
       if (value == '1') {
    ...
       }
       ... do nothing ...
    }
    
  4. or download this
    for {
       if (value == '1') {
    ...
          ... do stuff ...
       }
    }
    
  5. or download this
    if ($comboHashRef{$key}->[0] == '0')
    
  6. or download this
    if ($comboHashRef{$key}->[0] == 0)
    
  7. or download this
    if ($comboHashRef{$key}->[0] eq '0')