Files

12 lines
174 B
C++
Raw Permalink Normal View History

2018-09-01 15:14:05 +02:00
#include <QCoreApplication>
#include <QDebug>
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
qDebug() << "hello from server";
return 0;
}