7 lines
112 B
C
7 lines
112 B
C
#include "hello_world.h"
|
|
|
|
// Define the function itself.
|
|
const char *hello(void)
|
|
{
|
|
return "Hello, World!";
|
|
}
|