leo/compiler/tests/integers/u32/ternary.leo
2020-07-17 12:59:18 -07:00

3 lines
73 B
Plaintext

function main(b: bool, x: u32, y: u32) -> u32 {
return if b ? x : y
}