Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
consts
/
const_use_nested_options_test.v
8
lines
·
6
sloc
·
189 bytes
·
6488041a749df9762348d019c4223908c476f2e2
Raw
1
import
os
2
3
const
iterations = (os.getenv_opt(
'ITERATIONS'
)
or
{
'5'
}).int()
4
5
fn
test_const_use_nested_options() {
6
println(
'Number of iterations: ${iterations}'
)
7
assert iterations == 5
8
}
9