First Commit.

This commit is contained in:
unlockable
2022-09-23 17:42:58 +08:00
commit 24eedf3824
2 changed files with 10 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
*.dSYM
*.out
.DS_Store
/.vscode/

6
helloWorld.c Normal file
View File

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