v2 / vlib / v / slow_tests / inout / string_interp.vv
5 lines · 5 sloc · 81 bytes · 6a32c810703f4ec0c39fe18298ebe6c40acac8f1
Raw
1fn main() {
2 test := 'hello'
3 hello := 'world'
4 println('%.*s${hello}${test}')
5}
6