Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!

Sample Code:

<?PHP
	function hello($name) {
		echo "hello " . $name;
	}

	hello("world");
?>