leo/compiler/_otests/boolean/true_or_true.leo
2021-05-12 19:39:27 +03:00

5 lines
79 B
Plaintext

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