From e1bab4795328c7797570aed406fcac8375f4af80 Mon Sep 17 00:00:00 2001 From: Chatchai Jantaraprim Date: Sun, 9 Oct 2022 19:29:43 +0700 Subject: [PATCH] add hello.c --- .gitignore | 1 + README.md | 1 + hello.c | 6 ++++++ 3 files changed, 8 insertions(+) create mode 100644 .gitignore create mode 100644 hello.c diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ce01362 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +hello diff --git a/README.md b/README.md index e69de29..bacf998 100644 --- a/README.md +++ b/README.md @@ -0,0 +1 @@ +This is a test repo for gitea. diff --git a/hello.c b/hello.c new file mode 100644 index 0000000..a161d4c --- /dev/null +++ b/hello.c @@ -0,0 +1,6 @@ +#include + +int main(void) { + printf("Hello world\n"); + return 0; +}