Files
cpp-course/modules/01_fundamentals/src/hello_world.cpp
T

12 lines
243 B
C++
Raw Normal View History

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