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; +}