C++ Typing in the Forums

Hello to everyone in the community. I see that there are some people using Panda3D with C++. So if you are a Python user, don’t mind this topic. Most of the time, a C++ user types code in the forums like this:

#include

int main() {
  std::cout << “I love Panda3D\n”;
  return 0;
}

But, it doesn’t have proper highlighting, so now I figured out how to type in C++, see:

#include <iostream>

int main() {
  std::cout << "I love Panda3D\n";
  return 0;
}

To do so:

```cpp
code
```

Hope it helps!

2 Likes