leo/compiler/tests/function/multiple.leo
2020-07-07 10:11:23 -07:00

8 lines
134 B
Plaintext

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