// beispiele/hallo/main.cpp
#include <QApplication>
#include <QPushButton>

int main(int argc, char *argv[]) {
   QApplication app(argc, argv);
   QPushButton hello("Hallo Welt");
   hello.resize(100, 30);
   hello.show();
   return app.exec();
}

