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

9 lines
125 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function one() -> bool {
return true
}
function main() {
const a = one() && one();
2021-01-25 18:17:42 +03:00
console.assert(a == true);
}