leo/compiler/tests/field/ternary.leo

3 lines
81 B
Plaintext
Raw Normal View History

2020-07-08 05:53:37 +03:00
function main(b: bool, f1: field, f2: field) -> field {
2020-06-03 02:06:25 +03:00
return if b ? f1 : f2
}