leo/asg/tests/pass/function/repeated.leo
2021-01-25 07:19:38 -08:00

9 lines
123 B
Plaintext

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