User:Jka: Difference between revisions

From DataFlex Wiki
Jump to navigationJump to search
mNo edit summary
m (testing GeSHI)
Line 36: Line 36:




= Testing GeSHI source code highlight =
<source lang="csharp">
<source lang="csharp">
// Hello World in Microsoft C# ("C-Sharp").
// Hello World in Microsoft C# ("C-Sharp").
Line 41: Line 43:
using System;
using System;


class HelloWorld
class HelloWorl=
{
{
     public static int Main(String[] args)
     public static int Main(String[] args)

Revision as of 16:11, 5 June 2008



Pages


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


Testing GeSHI source code highlight

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

using System;

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