v/vlib/v/fmt/tests/strings_name_variable_call_...

6 lines
70 B
V

fn main() {
strings := 'hello'
a := strings.repeat(2)
println(a)
}