2020-07-17 06:47:47 +03:00
|
|
|
function tuple() -> (bool, bool) {
|
2020-07-17 22:59:18 +03:00
|
|
|
return (true, false)
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function main() -> (bool, bool) {
|
2020-07-17 22:59:18 +03:00
|
|
|
let (a, b) = tuple();
|
|
|
|
return (a, b)
|
2020-05-21 01:51:57 +03:00
|
|
|
}
|