leo/compiler/tests/boolean/true_or_false.leo

5 lines
72 B
Plaintext

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