Skip to content
Dec 15 / Nizam Sayeed

Hello World!

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.

Python

print "Hello World"

PHP

echo "Hello World!";

C#

public class HelloWorld
  public static void Main() {
    System.Console.WriteLine("Hello, World!");
  }
}