User talk:Crabbe

From The Shartak Wiki
Revision as of 02:31, 12 May 2010 by Crabbe (talk | contribs) (Sandbox)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Is the syntax highlighting extension installed? Let's see.

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

using System;

class HelloWorld {

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

} </source>