leo/compiler/tests/function/repeated.leo
2020-08-16 19:14:26 -07:00

9 lines
123 B
Plaintext

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