v/vlib/strconv/bare/str_array_example.v

8 lines
79 B
V
Raw Normal View History

fn main() {
mut x := []int{cap: 100}
x << 42
x << 41
x << 40
println(x)
}