leo/compiler/tests/boolean/true_and_false.leo

5 lines
73 B
Plaintext

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