ExampleMarkdown


Example Markdown

This is MarkDown text. See if this works.

And more WikiWordsAreHere. Here is some text and some text and

  1. a numbered
  2. list.
    • sublist
  3. another list
    1. ordered
    2. sublist
      1. sub sub list
      2. super sub list
code block goes here.
class A {
public:
  A() {}
  int get_answer() const { return 42; }
};

int main() {
  A a;
  std::cout << a.get_answer() << "\n";
}