This commit is contained in:
JingweiCui 2025-01-08 15:44:08 +08:00
commit 1406209cd8
2 changed files with 8 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
.vscode
build

6
main.c Normal file
View File

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