leo/tests/pass/parse/boolean/true_or_true.leo
2021-03-03 09:59:24 -08:00

5 lines
77 B
Plaintext

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