TheAlgorithms-C/exercism/hello-world/hello_world.c
2018-01-24 22:24:43 +01:00

8 lines
134 B
C

#include "hello_world.h"
const char *hello(void)
{
/* string is pointer of the first character */
return "Hello, World!";
}