3 lines
101 B
Text
3 lines
101 B
Text
def main(field[2] a, field[2] b, field condition) -> field[2] {
|
|
return condition == 1 ? a : b;
|
|
}
|