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

5 lines
102 B
Plaintext

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