leo/compiler/tests/boolean/true_or_false.leo

5 lines
78 B
Plaintext
Raw Normal View History

function main() {
let a = true || false;
2020-08-17 03:20:47 +03:00
console.assert(a == true);
}