mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-25 19:22:01 +03:00
8 lines
142 B
Plaintext
8 lines
142 B
Plaintext
function tuple() -> (bool, bool) {
|
|
return (true, false)
|
|
}
|
|
|
|
function main() -> (bool, bool) {
|
|
let (a, b) = tuple();
|
|
return (a, b)
|
|
} |