Help for this page

Select Code to Download


  1. or download this
    // YES                // YES               // NO
    if (cond)             if (cond) {          if (cond) {
    ...
    else                  } else {             } else
      alternate();          alternate();          alternate();
                          }
    
  2. or download this
    double calc_stuff(double x)
    {
        return 0 if x < 0;
        ...
    }
    
  3. or download this
    if (condition) { task() }
    task() if condition;