1
1
mirror of https://github.com/ProvableHQ/leo.git synced 2024-12-22 17:51:39 +03:00
leo/compiler/tests/boolean/false_or_false.leo

5 lines
74 B
Plaintext

function main() {
let a = false || false;
assert_eq!(a, false);
}