1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/v/gen/tests/if_expr.vv
2020-01-02 20:09:23 +01:00

6 lines
46 B
V

fn foo() {
a := if true { 1 } else { 2 }
}