Difference between revisions of "Help:Contents"

From Catglobe Wiki
Jump to: navigation, search
(Test Extension Hightligh)
 
Line 1: Line 1:
&lt;source lang="csharp" line="1"&gt;<br>// Hello World in Microsoft C# ("C-Sharp").  
+
&lt;source lang="c#" line="1"&gt; // Hello World in Microsoft C# ("C-Sharp").  
  
 
using System;  
 
using System;  
  
class HelloWorld<br>{<br>public static int Main(String[] args)<br>{<br>Console.WriteLine("Hello, World!");<br>return 0;<br>}<br>}<br>&lt;/source&gt;<br>
+
class HelloWorld { public static int Main(String[] args) { Console.WriteLine("Hello, World!"); return 0; } } &lt;/source&gt;

Revision as of 05:39, 18 December 2008

<source lang="c#" line="1"> // Hello World in Microsoft C# ("C-Sharp").

using System;

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