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