diff --git a/src/hello.c b/src/hello.c new file mode 100644 index 0000000..f39e3df --- /dev/null +++ b/src/hello.c @@ -0,0 +1,13 @@ +/******************************************************************************* + * This file, hello.c, is licensed under the Unlicese. See the file "LICENSE" * + * for details. * + * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * + * Says hello and exits. * + *******************************************************************************/ + +#include + +int main(){ + printf("Hello!"); + return 0 +}