This struct has a function associated
| 128 | |
| 129 | // This struct has a function associated |
| 130 | type rectangle struct { |
| 131 | length, height float64 |
| 132 | } |
| 133 | |
| 134 | func (r rectangle) Area() float64 { |
| 135 | return r.length * r.height |
nothing calls this directly
no outgoing calls
no test coverage detected