💻 Solving daily-life problems through projects
#include<iostream>
#include<vector>usingnamespacestd;
```cpp
intmain() {
Developer adnan;
adnan.study("Computer Science @ JMI");
adnan.build({
"AI Tools",
"Backend Systems",
"Developer Products"
});
adnan.currentlyWorkingOn(
"Atlas - AI Personal Activity & Intelligence System"
);
adnan.futureGoal(
"Create technology that impacts millions"
);
return0;
}