leo/asg/tests/pass/tuples/multiple.leo

6 lines
115 B
Plaintext
Raw Normal View History

2021-01-25 18:17:42 +03:00
function main() {
let (a, b) = (true, false);
console.assert(a == true);
console.assert(b == false);
}