mirea-projects/Third term/Industrial programming technologies/1_Calculator/main.sync-conflict-20240927-073239-VJAGI4P.cpp

12 lines
172 B
C++
Raw Normal View History

2024-09-27 05:31:03 +00:00
#include "mainwindow.h"
2024-09-23 23:22:33 +00:00
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
2024-09-27 05:31:03 +00:00
MainWindow w;
2024-09-23 23:22:33 +00:00
w.show();
return a.exec();
}