结构(记录)

type Point struct {
    x, y int
}

type Size struct {
    width, height int
}

type Rect struct {
    point Point
    size  Size
}

var rect = Rect{
    Point{34},
    Size{1012},
}