leo/asg/tests/pass/function/repeated.leo

9 lines
125 B
Plaintext

function one() -> bool {
return true
}
function main() {
const a = one() && one();
console.assert(a == true);
}