blank@gentoo~: cat whoami.cpp
#include <iostream>
class Me {
public:
Me(){};
void sayHello() const {
std::cout << "Hello, friend? That's lame. Maybe I should give you a name!\n";
}
public:
std::string handle = "Blank Fox";
std::string name = "Arthur Ottoni";
std::string age = "20";
std::string skills = "Pentester, Bug-Hunter, CTF-Player";
std::string tech = "Linux, Git, Docker, GoLang, Python, C/C++, JavaScript, SQL, PHP, JS";
std::string extra = "x86_64 assembly, BrainFuck";
private:
std::string quote = "I'm eternal black, never blue... (I just wanna cry)";
std::string secret = "Nothing Here...";
};
int main() {
Me blank;
blank.sayHello();
return EXIT_SUCCESS;
}
