struct Point{ x int y int } pub fn main(){ p := &Point{10,10} println(p.x) }