From 97e1904b096315bc093956455ada3f9cc1f3b617 Mon Sep 17 00:00:00 2001 From: eric-xue Date: Thu, 18 Jan 2018 20:25:16 -0500 Subject: [PATCH] first commit --- hello.c | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..5827660 --- /dev/null +++ b/hello.c @@ -0,0 +1,7 @@ +#include +int main() +{ + printf("Hello, World!\n"); + return 0; +} +