Help for this page

Select Code to Download


  1. or download this
    if (condition){
       &task1();
       &task2();
    ...
       &task4();
       &task5();
       }
    
  2. or download this
    if ( condition )
       {
          task1();
    ...
          task4();
          task5();
       }