mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-12-04 05:42:40 +03:00
8 lines
156 B
Plaintext
8 lines
156 B
Plaintext
|
function main() {
|
||
|
let a = (true, false);
|
||
|
let b = (true, a);
|
||
|
|
||
|
assert_eq!(b.0, true);
|
||
|
assert_eq!(b.1.0, true);
|
||
|
assert_eq!(b.1.1, false);
|
||
|
}
|