From b4fb059b537ac5734552fe97ec2ceec17606214b Mon Sep 17 00:00:00 2001 From: xiumo-qin Date: Sat, 14 Dec 2024 14:09:50 +0800 Subject: [PATCH] Create hello.c MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 我的第一段github代码 --- hello.c | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 hello.c diff --git a/hello.c b/hello.c new file mode 100644 index 00000000..5681fdad --- /dev/null +++ b/hello.c @@ -0,0 +1,5 @@ +#include + +int main() { + printf("Hello,World!"); +}