exercism/c/hello-world/hello_world.c

7 lines
81 B
C

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