Testing New Blog Backend

Post Sunday, 2nd March 2008 - Posted by Tom Bell

If you're seeing this it means my new blog backend has successfully been converted to use CarbonPHP instead of the system I used before I wrote CarbonPHP

Edit: testing the edit feature in the admin panel.

Testing Google's Prettify JavaScript code for syntax highlighting.

C code

#include <stdio.h> int main(int argc, char** argv) { printf("Hello world!\n"); return 0; }

C# code

Using System; namespace Testing { public class HelloWorld { static public void Main(string[] args) { Console.WriteLine("Hello world!"); } } }

PHP code

include('some_file.php'); class someClass { public function __construct() { echo 'Constructor!'; } }