leo/compiler/tests/boolean/all.leo
2020-07-17 12:59:18 -07:00

8 lines
145 B
Plaintext

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