v2 / vlib / v / tests / consts / const_use_nested_options_test.v
8 lines · 6 sloc · 189 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1import os
2
3const iterations = (os.getenv_opt('ITERATIONS') or { '5' }).int()
4
5fn test_const_use_nested_options() {
6 println('Number of iterations: ${iterations}')
7 assert iterations == 5
8}
9