1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
Files
v/vlib/v/fmt/tests/if_input.vv
2021-02-08 00:28:46 +01:00

4 lines
105 B
V

fn non_ternary_return() string {
return if some_cond { 'foo' } else if false { 'bar' } else { 'baz' }
}