12 lines
No EOL
191 B
C++
12 lines
No EOL
191 B
C++
#include <QApplication>
|
|
#include <QLabel>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
QLabel label("Hello, world!");
|
|
label.show();
|
|
|
|
return app.exec();
|
|
} |