NothingPad/main.cpp
Luis Gutierrez Lopez e2ede237b5
Subida de ficheros
Se incluye binario compilado de NothingPad (like NotePad)
2022-12-28 01:33:59 +01:00

11 lines
171 B
C++

#include "mainwindow.h"
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}