MCPcopy Create free account
hub / github.com/derekbanas/Go-Tutorial / contact

Struct contact

hellogo.go:148–152  ·  view source on GitHub ↗

Struct composition : Putting a struct in another

Source from the content-addressed store, hash-verified

146
147// Struct composition : Putting a struct in another
148type contact struct {
149 fName string
150 lName string
151 phone string
152}
153
154type business struct {
155 name string

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected