#include <iostream>
#include <string>
class ReadMe {
public:
virtual void about() = 0;
};
class sirmilann : public ReadMe {
public:
sirmilann() {
std::cout << R"(
██╗ ██╗███████╗██╗ ██╗ ██████╗ ██╗ ██╗ ██████╗ ██████╗ ██╗ ██████╗ ██╗
██║ ██║██╔════╝██║ ██║ ██╔═══██╗ ██║ ██║██╔═══██╗██╔══██╗██║ ██╔══██╗██║
███████║█████╗ ██║ ██║ ██║ ██║ ██║ █╗ ██║██║ ██║██████╔╝██║ ██║ ██║██║
██╔══██║██╔══╝ ██║ ██║ ██║ ██║ ██║███╗██║██║ ██║██╔══██╗██║ ██║ ██║╚═╝
██║ ██║███████╗███████╗███████╗╚██████╔╝ ╚███╔███╔╝╚██████╔╝██║ ██║███████╗██████╔╝██╗
╚═╝ ╚═╝╚══════╝╚══════╝╚══════╝ ╚═════╝ ╚══╝╚══╝ ╚═════╝ ╚═╝ ╚═╝╚══════╝╚═════╝ ╚═╝
)" << std::endl;
username = "sirmilann";
language = "English";
coding_languages = "C++";
location = "United Kingdom";
donateXMR = "44Q5UNcp3LR4SRZm3fymYeDZETwc6aTynLGnkBgLMTw7a3Nkjambq3WGbqFHLA7gc8D1mVJ6ji7tUeKbKVi9KirJQ3n4964";
}
void about() override {
std::cout << "Hi, I'm " << username << ". I'm just a guy who codes." << std::endl;
}
private:
std::string username;
std::string language;
std::string discord;
std::string coding_languages;
std::string location;
std::string donateXMR;
};
int main() {
sirmilann me;
me.about();
return 0;
}
Pinned Loading
-
Stealthify-2.0
Stealthify-2.0 PublicAn efficient Python script to obfuscate code by renaming identifiers.
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.