From 47cb967fdc004d8015bbac6f0240395d89927734 Mon Sep 17 00:00:00 2001 From: aircwt <38235418+aircwt@users.noreply.github.com> Date: Tue, 11 Feb 2020 09:16:04 +0800 Subject: [PATCH] Create hello.c --- hello.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..c42fa42 --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include +int main() +{ + printf("Hello World!\n"); + return 0; +}