leo/compiler/tests/function/multiple.leo

8 lines
130 B
Plaintext

function test() -> (bool, bool) {
return true, false
}
function main() -> (bool, bool) {
let (a, b) = test();
return a, b
}