#include "widget.h"
#include <QApplication>
#include <iostream>
#include <QDebug>
int main(int argc, char *argv[])
{
qputenv("QT_FORCE_STDERR_LOGGING", "1");
QApplication a(argc, argv);
// Widget w;
// w.show();
qDebug() << "qDebug output";
std::cout << "cout output" << std::endl;
return a.exec();
}