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
}
}