test.cpp:#include <QApplication>#include <QPushButton>int main(int argc, char** argv){ QApplication app(argc, argv); QPushButton hello("Hello, World!"); hello.resize(100, 30); hello.show(); return app.exec();}