Help for this page

Select Code to Download


  1. or download this
    if (x>3)
       foo()
    
  2. or download this
    if (x>3)
       foo()
       bar()
    
  3. or download this
    (x>3) ? foo() : bar();
    
  4. or download this
    if (x>3) foo();
    else bar();
    
  5. or download this
    if (x>3> { foo(); }