Files
exercism/c/hello-world/src/hello_world.c
2021-08-08 21:11:22 +02:00

8 lines
101 B
C

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