leo/compiler/tests/function/multiple.leo
2020-07-17 12:59:18 -07:00

8 lines
142 B
Plaintext

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