2020-05-21 01:51:57 +03:00
|
|
|
function test() -> (bool, bool) {
|
2020-07-07 20:11:23 +03:00
|
|
|
return (true, false)
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function main() -> (bool, bool) {
|
|
|
|
let (a, b) = test();
|
2020-07-07 20:11:23 +03:00
|
|
|
return (a, b)
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|