bevo009
3/31/2018 - 12:08 PM

True Boolean

True Boolean

main() {
  bool b = true;
  
  if (b) {		// If b is true (it is), execute the following statement
    print("True");
  }
 
	if (!b) {
    print("True");	// If b is false (it isn't), execute the following statement (it won't)
  } else {
    print("False");	// This line prints instead
  }
}