swissChili | 7babd92 | 2021-12-02 22:46:48 -0800 | [diff] [blame^] | 1 | #include <QCoreApplication> |
| 2 | #include <QDebug> |
| 3 | |
| 4 | int main(int argc, char *argv[]) { |
| 5 | QCoreApplication a(argc, argv); |
| 6 | qDebug() << "Hello World"; |
| 7 | return QCoreApplication::exec(); |
| 8 | } |