leo/compiler/tests/tuples/nested.leo

4 lines
69 B
Plaintext
Raw Normal View History

2020-08-11 05:40:49 +03:00
function main() {
let a = (true, false);
let b = (true, a);
}