leo/compiler/tests/integer/u128/ternary.leo
2020-06-05 16:35:50 -07:00

3 lines
74 B
Plaintext

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