👋 Welcome, I am Jimmy
#include <iostream>
class createCharacter{
private:
std::string name{ "HairyPotato 🥔" };
int age{ 20 };
std::string hobbies{ "Reading" };
public:
void about_me(){
std::cout << "Undergraduate student at Tunku Abdul Rahman University pursuing Computer Science."
<< "Passionate about data analysis, machine learning, and developing impactful projects."
<< "Willing to learn anything and everything anytime"
}
}