Initial commit

This commit is contained in:
github-classroom[bot]
2023-11-23 08:19:32 +00:00
committed by GitHub
commit 852d59b0b3
5 changed files with 229 additions and 0 deletions

7
main.cpp Normal file
View File

@@ -0,0 +1,7 @@
#include <QApplication>
int main(int argc, char *argv[]) {
QApplication application(argc, argv);
return application.exec();
}