mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
4 lines
105 B
V
4 lines
105 B
V
fn non_ternary_return() string {
|
|
return if some_cond { 'foo' } else if false { 'bar' } else { 'baz' }
|
|
}
|