Skip to main content
Version: Next

Not

The logical negation ("not") is implemented by the unary operator !.

const not_1 : bool = !true // false
const not_2 : bool = !false // true