leo/tests/pass/parse/statements/ternary_basic.leo

5 lines
89 B
Plaintext
Raw Normal View History

2021-03-03 20:59:24 +03:00
function main(a: bool, b: bool) {
let c = if a ? true : false;
let d = c == b;
}