Let's try to write some code chunks.
Python is the first:
| def fun(a, b):
return a + b
|
Now is the C++ turn:
| #include <iostream>
using namespace std;
int main()
{
cout << "Hello, Pelican!" << endl;
return 0;
}
|
Erlang?
| factorial(0) -> 1;
factorial(N) -> N * factorial(N-1).
|
Clojure?
| (defn double-me [x] (* 2 x))
|
And even Brainfuck?
| ++++++++++[>+++++++>++++++++++>+++>+<<<<-]>++
.>+.+++++++..+++.>++.<<+++++++++++++++.>.+++.
------.--------.>+.>.
|
Aye! Even Brainfuck!
Summing up...
...highlighting works very well :)