leo/compiler/tests/function/multiple.leo
2020-07-30 12:10:33 -07:00

10 lines
160 B
Plaintext

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