Hello World in PHP

January 21, 2008 | Hello World, php

The hello world example in PHP.

1
2
3
<?php 
echo "Hello World!";
?>

Hello World in C#

January 21, 2008 | C#, Hello World

Here is the easiest example of a C# program.

1
2
3
4
5
6
7
class Hello
{
	static void Main()
	{
		System.Console.WriteLine("Hello World!");
	}
}