v2 / vlib / v / tests / skip_unused / auto_string.vv
9 lines · 8 sloc · 108 bytes · 4117a469f4112670b820c893b43c04c82a4d90de
Raw
1a := 'Tom'
2b := 'Hello ${a}'
3c := &a
4println(b)
5println('C->${c:s}')
6
7f := 1.24
8f_p := &f
9println('${f_p}')
10