10 lines
173 B
C++
10 lines
173 B
C++
|
|
#include <QCoreApplication>
|
||
|
|
#include <QDebug>
|
||
|
|
|
||
|
|
int main(int argc, char **argv)
|
||
|
|
{
|
||
|
|
QCoreApplication app(argc, argv);
|
||
|
|
qDebug() << "testing";
|
||
|
|
return EXIT_SUCCESS;
|
||
|
|
}
|