13 lines
127 B
C++
13 lines
127 B
C++
#if !defined(HELLO_WORLD_H)
|
|
#define HELLO_WORLD_H
|
|
|
|
#include <string>
|
|
|
|
namespace hello_world {
|
|
|
|
std::string hello();
|
|
|
|
}
|
|
|
|
#endif
|