Type initialization / Structures

type size struct {
    width, height int
}

type point struct {
    top, left int
}

type rectangle struct {
    size size
    point point
}

var rect = rectangle{
    size{1010},
    point{55},
}