Welcome to TCZ. Here is my code:
<?php

class TczClass
{
	function __construct()
	{
		echo "<strong>Welcome to TCZ.</strong>\n";
	}

	function __destruct()
	{
		echo "Soon...\n";
	}
}

$tcz = new TczClass;

echo "Here is my code: <pre>\n" . htmlspecialchars( file_get_contents( __FILE__ ) ) . "\n</pre>";

?>

Soon...