leo/tests/pass/parse/boolean/false_and_false.leo

5 lines
80 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
function main() {
let a = false && false;
console.assert(a == false);
}