leo/compiler/tests/statements/ternary_basic.leo

3 lines
55 B
Plaintext
Raw Normal View History

function main(b: bool) -> u32 {
2020-06-08 07:26:49 +03:00
return if b ? 1 : 0
}