💻 Solving daily-life problems through projects
#include <iostream>
#include <vector>
using namespace std;
```cpp
int main() {
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"
);
return 0;
}