In the namespace exercise, it talks about creating namespaces for solving a bank code. However, these errors constantly pop up, even when I run the base code. Please let me know if it’s a bug or if I just did something wrong
The test runner will fail if you just run the base code, because it expect you to define a namespace called estate_executor
for it to check. (which is what happen in your picture)
Did you implement the required namespace and its logic? If yes, post it so people can see what’s going on. It’s hard to troubleshoot and tell what’s wrong without details.
@Auyushg Etiquette heads-up: verbatim citations of code & error messages are generally preferred over screenshots. To make either nice to read, you can use a code block:
```cpp
string hello() {
return "Hello, World!";
}
```
string hello() {
return "Hello, World!";
}