this.isMin.uk


golang의 struct에서 멤버의 이름은 두개 이상 동시에 선언할 수 있다

type foo struct {
  bar, bar2 int
}

f := foo {
  bar: 1,
  bar2: 2,
}
Golang, Til