Skip to main content
Version: 1.6.0

And

The logical conjunction ("and") is implemented by the binary operator &&.

const and_1 : bool = false && true; // false
const and_2 : bool = false && false; // false
const and_3 : bool = true && true; // true
const and_4 : bool = true && false; // false