mirror of
https://github.com/vlang/v.git
synced 2025-09-13 22:42:26 +03:00
7 lines
79 B
V
7 lines
79 B
V
fn main() {
|
|
mut x := []int{cap: 100}
|
|
x << 42
|
|
x << 41
|
|
x << 40
|
|
println(x)
|
|
}
|