| 16 | // - Document the "orangeness" field, explaining that it is a number from 8 to 27 |
| 17 | |
| 18 | pub struct Pumpkin { |
| 19 | pub roundness: f32, |
| 20 | pub orangeness: i32, |
| 21 | } |
| 22 | |
| 23 | // 4. Document the "smash" method. Explain that if you smash the pumpkin, it will be gone. Then it |
| 24 | // can't be used for pie. :'-( |
nothing calls this directly
no outgoing calls
no test coverage detected