This is the Markdown Guide.
Emperor Palpatine / Darth Sidious
#include
#include
class Palpatine {
public:
Palpatine() {
favorite_apprentice = "Darth Vader";
location = "Death Star";
}
void give_order() { std::cout << "Execute Order 66" << std::endl; }
private:
std::string favorite_apprentice;
std::string location;
};
int main(int, char **) {
Palpatine emperor;
emperor.give_order();
}