leo/asg/tests/pass/function/repeated.leo
2021-04-14 15:27:57 -07:00

9 lines
126 B
Plaintext

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