User:Jka: Difference between revisions

From DataFlex Wiki
Jump to navigationJump to search
mNo edit summary
mNo edit summary
Line 34: Line 34:
|Company=Sture Aps
|Company=Sture Aps
}}
}}
<source lang="csharp">
// Hello World in Microsoft C# ("C-Sharp").
using System;
class HelloWorld
{
    public static int Main(String[] args)
    {
        Console.WriteLine("Hello, World!");
        return 0;
    }
}
</source>

Revision as of 16:10, 5 June 2008



Pages


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


// Hello World in Microsoft C# ("C-Sharp").

using System;

class HelloWorld
{
    public static int Main(String[] args)
    {
        Console.WriteLine("Hello, World!");
        return 0;
    }
}