This post shows how to use the sample API. Here is the code:

1
echo hello

Here is a longer example with multiple lines:

1
2
3
4
5
6
7
#include <iostream>

int main() {
std::cout << "hello";
return 0;
}

And a plain text block:

1
2
foo bar
baz qux

That is all for this post.