1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/strconv/bare/str_array_example.v

8 lines
79 B
V

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