Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
fmt
/
tests
/
conditional_compilation_keep_in_module.vv
15
lines
·
13
sloc
·
138 bytes
·
dc9997f58c211a9816b4a0bd1ff37d5853b993ef
Raw
1
module log
2
3
const (
4
debug = 'debug'
5
prod = 'prod'
6
)
7
8
fn log() {
9
$if debug {
10
println('debug')
11
}
12
$if !prod {
13
println('prod')
14
}
15
}
16