v/vlib/v/gen/c/testdata/comp_if_unknown.vv

10 lines
86 B
V

fn main() {
mut x := 1
$if glibc {
x = 2
} $else {
x = 3
}
println('done')
}