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

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();
}