Hello World!
2008 December 15
This is my first blog post, ever. I am kind of a late adopter to the whole blogging thing. So for my first post, I will be testing out the neat syntax highlighting plugin for WordPress. in classic computer science fashion, I will write the quintessential ‘Hello World’ example in some popular programming languages to test this baby out.
C#
public class HelloWorld
public static void Main() {
System.Console.WriteLine( "Hello, World!" );
}
}
Python
print "Hello World"
PHP
echo "Hello World!";