leo/compiler/tests/function/multiple.leo

8 lines
134 B
Plaintext
Raw Normal View History

function test() -> (bool, bool) {
2020-07-07 20:11:23 +03:00
return (true, false)
}
function main() -> (bool, bool) {
let (a, b) = test();
2020-07-07 20:11:23 +03:00
return (a, b)
}