v2 / vlib / v / slow_tests / inout / printing_const_array.vv
11 lines · 9 sloc · 215 bytes · a741db43f388822bd078daa617d285ed6cf7766b
Raw
1const dat = 'Data tag ,No data'.split(',')
2const dd = []Info{len: 4, init: Info{if index in tag { dat[0] + index.str() } else { dat[1] }}}
3const tag = [1, 2]
4
5struct Info {
6 val string
7}
8
9fn main() {
10 println(dd)
11}
12