dotfiles/.config/Code/User/History/-52206cdf/IKYv.cpp
RafayAhmad7548 ab03d5f10c test
2024-06-16 18:53:25 +05:00

11 lines
No EOL
190 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();
}