This repository has been archived on 2024-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
NG_2024_Stanislav_Mykhailenko/Lesson_8/Task_1/main.cpp

12 lines
174 B
C++
Raw Normal View History

2024-07-29 23:17:43 +00:00
#include "llmmathquiz.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
LlmMathQuiz w;
w.show();
return a.exec();
}