1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

7 lines
133 B
C++
Raw Normal View History

2017-09-05 18:07:05 +08:00
#include <QCoreApplication>
#include <QDebug>
int main(int argc, char** argv)
{
qDebug() << "This is main function!";
return 0;
}