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

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