Structs用名詞
type Order struct {}
Interfaces用動名詞
type Reader interface {}
Functions用動詞
func (ol *OrderList) Add(o *Order) *OrderList {}
Structs用名詞
type Order struct {}
Interfaces用動名詞
type Reader interface {}
Functions用動詞
func (ol *OrderList) Add(o *Order) *OrderList {}