Initial commit

This commit is contained in:
github-classroom[bot]
2024-01-20 10:43:33 +00:00
committed by GitHub
commit b3cc535790
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();
}