Pages

Showing posts with label hello world. Show all posts
Showing posts with label hello world. Show all posts

Monday, 30 July 2007

Hello world :)

What other way to start blogging on technical stuff other than greeting one and all in the right way? So here's the classic program in C#:
class Program{
public static void Main(string[] args){
Console.WriteLine("Hello world :)");
}
}