Sandbox
Jump to navigation
Jump to search
<br /> #include <QApplication&gt;<br /> #include <QPushButton&gt;
int main(int argc, char *argv[])<br /> {<br /> QApplication app(argc, argv);
QPushButton hello("Hello world!");<br /> hello.resize(100, 30);
hello.show();<br /> return app.exec&amp;#40;&#41;;<br /> }<br />