exercism.org/c/hello-world/hello_world.c

8 lines
112 B
C
Raw Normal View History

2024-03-24 18:34:11 +01:00
#include "hello_world.h"
// Define the function itself.
const char *hello(void)
{
return "Hello, World!";
}