leo/compiler/tests/boolean/all.leo

8 lines
137 B
Plaintext

// !(true && (false || true))
function main() -> bool {
const a = true;
const b = false || a;
const c = !(true && b);
return c
}