DataFlex Source code formatting: Difference between revisions

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


<source lang="vdf">
<source lang="vdf">
  showln "hello world"
 
Object oMyEditor is a cMyEdit
  Set Size to 126 287
  Set Location to 5 5
End_Object // oMyEditor
 
</source>
</source>

Revision as of 09:51, 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;
    }
}



Object oMyEditor is a cMyEdit
   Set Size to 126 287
   Set Location to 5 5
End_Object // oMyEditor