$ cd ./pl/

$ cat ./whoami.cpp

#include <iostream>

std::string whoami = R"(
# $ whoami
~ just a man who lives between zeros and ones.
)";

std::string love = R"(
# $ love
~ cars & codes & offensive security
)";

int main() {
    std::cout << whoami;
    std::cout << love;

    return 0;
}
 z1ntrx@leet  ~/pl  g++ whoami.cpp  -o whoami
 z1ntrx@leet  ~/pl  ./whoami                                       

# $ whoami
~ just a man who lives between zeros and ones.

# $ love
~ cars & codes & offensive security

$ ls ./contacts/

Last updated