Struct composition : Putting a struct in another
| 146 | |
| 147 | // Struct composition : Putting a struct in another |
| 148 | type contact struct { |
| 149 | fName string |
| 150 | lName string |
| 151 | phone string |
| 152 | } |
| 153 | |
| 154 | type business struct { |
| 155 | name string |
nothing calls this directly
no outgoing calls
no test coverage detected