leo/compiler/tests/boolean/true_or_false.leo
2020-08-16 17:20:47 -07:00

5 lines
78 B
Plaintext

function main() {
let a = true || false;
console.assert(a == true);
}