leo/compiler/tests/integers/u16/ternary.leo
2020-08-16 19:14:26 -07:00

5 lines
105 B
Plaintext

function main(s: bool, a: u16, b: u16, c: u16) {
let r = if s ? a : b;
console.assert(r == c);
}