DataFlex Source code formatting: Difference between revisions

From DataFlex Wiki
Jump to navigationJump to search
mNo edit summary
mNo edit summary
Line 17: Line 17:




<source lang="php">
<source lang="vdf">
   showln "hello world"
   showln "hello world"
</source>
</source>

Revision as of 09:47, 6 June 2008

Testing GeSHI source code highlight

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

using System;

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


  showln "hello world"