()
| 30 | return r.width * r.height |
| 31 | } |
| 32 | func (r rect) perim() float64 { |
| 33 | return 2*r.width + 2*r.height |
| 34 | } |
| 35 | |
| 36 | // The implementation for `circle`s. |
| 37 | func (c circle) area() float64 { |
nothing calls this directly
no outgoing calls
no test coverage detected