leo/compiler/tests/boolean/all.leo

8 lines
131 B
Plaintext

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