DataFlex Source code formatting

From DataFlex Wiki
Revision as of 09:20, 6 June 2008 by Jka (talk | contribs) (New page: = Testing GeSHI source code highlight = <source lang="csharp"> // Hello World in Microsoft C# ("C-Sharp"). using System; class HelloWorl= { public static int Main(String[] args) ...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

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;
    }
}