| 8 | |
| 9 | public: |
| 10 | Person(const std::string& name, int age) : name(name), age(age) {} |
| 11 | |
| 12 | void greet() { |
| 13 | std::cout << "Hello, I'm " << name << " and I'm " << age << " years old." << std::endl; |
nothing calls this directly
no outgoing calls
no test coverage detected