exercism/c/hello-world/hello_world.c

4 lines
109 B
C

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