This commit is contained in:
RafayAhmad7548 2024-06-16 18:53:25 +05:00
parent 37776af5db
commit ab03d5f10c
4045 changed files with 286212 additions and 3 deletions

View file

@ -0,0 +1,9 @@
#include <iostream>
using namespace std;
int main(){
return 0;
}

View file

@ -0,0 +1,11 @@
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[]){
QApplication app(argc, argv);
QLabel label("Hello, world!");
label.show();
return app.exec();
}

View file

@ -0,0 +1,12 @@
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[])
{
QApplication app(argc, argv);
QLabel label("Hello, world!");
label.show();
return app.exec();
}

View file

@ -0,0 +1 @@
{"version":1,"resource":"file:///home/rafayahmad/Stuff/Coding/C%2B%2B/STracker/main.cpp","entries":[{"id":"Cfol.cpp","timestamp":1715680510731},{"id":"wW4o.cpp","timestamp":1715680530011},{"id":"Wfiz.cpp","source":"Workspace Edit","timestamp":1715680544495},{"id":"IKYv.cpp","timestamp":1715680547571},{"id":"zCS8.cpp","timestamp":1715680919556}]}

View file

@ -0,0 +1,10 @@
#include <iostream>
using namespace std;
int main(){
return 0;
}

View file

@ -0,0 +1,12 @@
#include <QApplication>
#include <QLabel>
int main(int argc, char *argv[]){
QApplication app(argc, argv);
QLabel label("Hello, world!");
label.show();
return app.exec();
}