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