mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-30 23:33:27 +03:00
10 lines
168 B
Plaintext
10 lines
168 B
Plaintext
function foo() -> (bool, bool) {
|
|
return (true, false)
|
|
}
|
|
|
|
function main() {
|
|
let (a, b) = foo();
|
|
|
|
console.assert(a == true);
|
|
console.assert(b == false);
|
|
} |