Actions

Sandbox

From Populous Wiki

Revision as of 05:42, 28 December 2007 by TedTycoon (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Welcome to the Wikipedia Sandbox! This page allows you to carry out experiments. To edit, click here or edit this page above (or the views section for obscure browsers), make your changes and click the Save page button when finished. Content will not stay permanently; this page is automatically cleaned every so often.

Please do not place copyrighted, offensive, or libelous content in the sandbox(es).

This page is a virtual sandbox on the Populous Wiki.

You may also use the templates for experimental purposes.



Test using SyntaxHighlight_GeSHi:

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

using System;

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