User:Jka

From DataFlex Wiki
Revision as of 16:10, 5 June 2008 by Jka (talk | contribs)
Jump to navigationJump to search



Pages


Name Jacob Andresen
Email jacob@sture.dk
Company Sture Aps


1
2
3
4
5
6
7
8
9
10
11
12
// Hello World in Microsoft C# ("C-Sharp").
 
using System;
 
class HelloWorld
{
    public static int Main(String[] args)
    {
        Console.WriteLine("Hello, World!");
        return 0;
    }
}