8 lines
79 B
V
8 lines
79 B
V
|
fn main() {
|
||
|
mut x := []int{cap: 100}
|
||
|
x << 42
|
||
|
x << 41
|
||
|
x << 40
|
||
|
println(x)
|
||
|
}
|