leo/compiler/tests/boolean/true_and_true.leo

5 lines
79 B
Plaintext

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