ExampleMarkdown
Example Markdown
This is MarkDown text. See if this works.
And more WikiWordsAreHere. Here is some text and some text and
- a bulleted
- list and
- a numbered
- list.
- sublist
- another list
- ordered
- sublist
- sub sub list
- 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";
}