mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
10 lines
74 B
V
10 lines
74 B
V
struct A {
|
|
i []int
|
|
}
|
|
|
|
fn main() {
|
|
mut a := A{
|
|
i: [0]
|
|
}
|
|
a.i[0] = 3
|
|
}
|