leo/compiler/tests/boolean/true_and_true.leo
2020-08-16 17:20:47 -07:00

5 lines
77 B
Plaintext

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