leo/tests/pass/parse/statements/ternary_basic.leo
2021-03-08 14:45:38 -08:00

5 lines
86 B
Plaintext

function main(a: bool, b: bool) {
let c = a ? true : false;
let d = c == b;
}