leo/compiler/tests/statements/ternary_basic.leo

5 lines
90 B
Plaintext
Raw Normal View History

2020-07-31 03:11:58 +03:00
function main(a: bool, b: bool) {
const c = a ? true : false;
2020-07-31 03:11:58 +03:00
const d = c == b;
}