Difference between revisions of "Help:Contents"

From Catglobe Wiki
Jump to: navigation, search
Line 1: Line 1:
<source lang="csharp" 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>
+
<source lang="csharp" 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>
  
 
<poll>
 
<poll>

Revision as of 03:39, 19 December 2008

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

<poll> Do you like this extension? Yes No I don't know yet. </poll>