mirror of
https://github.com/AleoHQ/leo.git
synced 2024-12-19 23:52:02 +03:00
10 lines
169 B
Plaintext
10 lines
169 B
Plaintext
function foo() -> (bool, bool) {
|
|
return (true, false)
|
|
}
|
|
|
|
function main() {
|
|
const a = foo();
|
|
|
|
console.assert(a.0 == true);
|
|
console.assert(a.1 == false);
|
|
} |