----- STRUCTS -----
| 121 | |
| 122 | // ----- STRUCTS ----- |
| 123 | type customer struct { |
| 124 | name string |
| 125 | address string |
| 126 | bal float64 |
| 127 | } |
| 128 | |
| 129 | // This struct has a function associated |
| 130 | type rectangle struct { |
nothing calls this directly
no outgoing calls
no test coverage detected