#include <iostream>
#include <string>
#include <vector>
#include <map>
class AboutMe {
public:
std::string name;
std::vector<std::string> aliases;
std::string discord;
std::map<std::string, std::string> projects;
AboutMe() {
name = "Ömer";
aliases = {"Sentiax", "isw_", "Astro","Rcynx"};
discord = "hbyq";
projects = {
{"Twiz.lol", "A bio-link site for sharing social links."},
{"SGuard", "A upcoming tool that protects sites from bots, DDoS, and hackers."}
};
}
};
int main() {
AboutMe aboutMe;
std::cout << "Name: " << aboutMe.name << std::endl;
std::cout << "Aliases: ";
for (const auto& alias : aboutMe.aliases) {
std::cout << alias << " ";
}
std::cout << std::endl;
std::cout << "Discord: " << aboutMe.discord << std::endl;
std::cout << "Projects:" << std::endl;
for (const auto& project : aboutMe.projects) {
std::cout << " " << project.first << ": " << project.second << std::endl;
}
return 0;
}
Pinned Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.