Difference between revisions of "User:Ravensgrace/Sandbox"
From SimsWiki
Ravensgrace (Talk | contribs) (Created page with "{| style="color:#000000; border:solid 1px #A8A8A8; padding:0.5em; margin:0.5em 0; background-color:#FFFFFF;font-size:95%; vertical-align:top;" | style="padding:1em;width: 32px" |...") |
Ravensgrace (Talk | contribs) |
||
Line 4: | Line 4: | ||
| style="padding:1em;width: 32px" | [[Image:Icon-atom.png|32px]] | | style="padding:1em;width: 32px" | [[Image:Icon-atom.png|32px]] | ||
|} | |} | ||
+ | |||
+ | <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> |
Latest revision as of 05:11, 28 January 2012
{{{text}}}|Note: When you edit this page, you agree to release your contribution into the public domain. If you don't want this or can't do this because of license restrictions, please don't edit. This page is one of the Template:Mediawiki, which can be freely copied into fresh wiki installations and/or distributed with MediaWiki software; see Help:Contents for an overview of all pages. See Template:Mediawiki for instructions.}} |
<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>