leo/compiler/tests/boolean/true_or_false.leo

5 lines
72 B
Plaintext
Raw Normal View History

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