[Go] 構造体を定義する

作成日: 2018年02月18日

書式

type 構造体名 struct {
}

type Animal struct {
}
  • Animalという名前の関数を定義しています。
Go