Initial Course
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user