leo/compiler/tests/integers/u128/ternary.leo
2020-06-07 21:26:49 -07:00

3 lines
74 B
Plaintext

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