exercism/c/hello-world/hello_world.c

5 lines
109 B
C
Raw Permalink Normal View History

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