Help for this page

Select Code to Download


  1. or download this
    A ? B : C
    
    # is equivalent to
    if ( A ) { B } else { C }
    
  2. or download this
    print A ? B : C;  #correct
    
    ...
    # does the same, but doesn't mean the same:
    if( A ){ print B }
    else   { print C }