* Dogs and Cats polymorphism */
| 15 | ) |
| 16 | /* Dogs and Cats polymorphism */ |
| 17 | type Being interface { |
| 18 | String() string |
| 19 | SetName(s string) |
| 20 | SetOrder(o int) |
| 21 | Name() string |
| 22 | isOlder(other Being) bool |
| 23 | Order() int |
| 24 | } |
| 25 | type Animal struct { |
| 26 | name string |
| 27 | order int |
no outgoing calls
no test coverage detected