mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
10 lines
75 B
V
10 lines
75 B
V
struct Aaa {
|
|
pub mut:
|
|
i []int
|
|
}
|
|
|
|
fn main() {
|
|
a := []Aaa{}
|
|
a[0].i << 3
|
|
}
|