Boolean or Bool
Description
boolean lightOn = false;bool lightOn = false;var gameOver = true;gameOver = FalseShortcut
Last updated
boolean lightOn = false;bool lightOn = false;var gameOver = true;gameOver = FalseLast updated
boolean lightOn = false;
println(lightOn); // Prints āfalseā to console
println(!lightOn); // Prints ātrueā to console
bool lightOn = false;
print(lightOn); // Prints āfalseā to console
print(!lightOn); // Prints ātrueā to console