leo/compiler/tests/boolean/false_and_false.leo

5 lines
80 B
Plaintext
Raw Normal View History

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