first commit

This commit is contained in:
2023-06-02 02:41:24 +08:00
parent 6b95ca5582
commit edc6966b9d
20 changed files with 309 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
TEMPLATE = app
CONFIG += console
CONFIG -= app_bundle
CONFIG -= qt
SOURCES += main.c
+7
View File
@@ -0,0 +1,7 @@
#include <stdio.h>
int main()
{
printf("Hello World!\n");
return 0;
}