leo/asg/tests/pass/tuples/function.leo

10 lines
167 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function foo() -> (bool, bool) {
return (true, false)
}
function main() {
let a = foo();
console.assert(a.0 == true);
console.assert(a.1 == false);
}