mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-24 07:48:04 +03:00
10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
function foo() -> (bool, bool) {
|
|
return (true, false)
|
|
}
|
|
|
|
function main() {
|
|
let a = foo();
|
|
|
|
console.assert(a.0 == true);
|
|
console.assert(a.1 == false);
|
|
} |