Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
gen
/
c
/
testdata
/
comptime_if.vv
10
lines
·
10
sloc
·
183 bytes
·
32ad8de8a4347b85954f526f4890f0450fd9796e
Raw
1
// vtest vflags: -d some_other_define
2
platform := $if some_custom_define ? {
3
'abc'
4
} $else $if some_other_define ? {
5
'xyz'
6
} $else {
7
eprintln('oh no')
8
exit(1)
9
}
10
println(platform)
11