mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-28 01:01:53 +03:00
10 lines
160 B
Plaintext
10 lines
160 B
Plaintext
function tuple() -> (bool, bool) {
|
|
return (true, false)
|
|
}
|
|
|
|
function main() {
|
|
let (a, b) = tuple();
|
|
|
|
assert_eq!(a, true);
|
|
assert_eq!(b, false);
|
|
} |