Actions

Sandbox

From Populous Wiki

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;
    }
}