Структуры / Конструкторы

//There are no classes in golang
type man struct {
    Name string
}

type employee struct {
    Position string
    man
}

empl := employee{"booker"man{"Max"}}

fmt.Println("empl =", empl)