blob: 6c078800bf3a14f61ad32c5029e5bbccee2e75f1 [file] [log] [blame]
#include <QCoreApplication>
#include <QDebug>
int main(int argc, char *argv[]) {
QCoreApplication a(argc, argv);
qDebug() << "Hello World";
return QCoreApplication::exec();
}