| 20 | width, height float64 |
| 21 | } |
| 22 | type circle struct { |
| 23 | radius float64 |
| 24 | } |
| 25 | |
| 26 | // To implement an interface in Go, we just need to |
| 27 | // implement all the methods in the interface. Here we |
nothing calls this directly
no outgoing calls
no test coverage detected