2026-08-11 17:40:36 +03:00
|
|
|
#include "hello_world.hpp"
|
|
|
|
|
|
|
|
|
|
namespace fundamentals {
|
|
|
|
|
|
|
|
|
|
auto greet(const char* name) -> const char* {
|
|
|
|
|
// TODO: Return a static string in the format "Hello, <name>!"
|
|
|
|
|
(void)name;
|
|
|
|
|
return "Hello, World!";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace fundamentals
|