dotfiles/.config/Code/User/History/-52206cdf/IKYv.cpp

11 lines
190 B
C++
Raw Normal View History

2024-06-16 18:53:25 +05:00
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[]){
QApplication app(argc, argv);
QLabel label("Hello, world!");
label.show();
return app.exec();
}