/** * @file hello_world.cpp * @date 2020-06-20 */ #include namespace hello { std::string GetHelloWorldString() { return "hello world"; } } /* namespace hello */