palpatine

Sample data to present the Markdown support 🚀

This is the Markdown Guide.


Image of Palpatine

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();
}

Image