add hello.c

This commit is contained in:
Chatchai Jantaraprim
2022-10-09 19:29:43 +07:00
parent e4fcfb0622
commit e1bab47953
3 changed files with 8 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
hello

View File

@@ -0,0 +1 @@
This is a test repo for gitea.

6
hello.c Normal file
View File

@@ -0,0 +1,6 @@
#include <stdio.h>
int main(void) {
printf("Hello world\n");
return 0;
}