User:Franziska: Difference between revisions
Jump to navigation
Jump to search
(Created page with "test <code>test</code>") |
No edit summary |
||
Line 1: | Line 1: | ||
test <code>test</code> |
test <code>test</code> |
||
<source lang="csharp"> |
|||
// Hallo Welt in Microsoft C#. |
|||
using System; |
|||
class HelloWorld |
|||
{ |
|||
public static int Main(String[] args) |
|||
{ |
|||
Console.WriteLine("Hallo, Welt!"); |
|||
return 0; |
|||
} |
|||
} |
|||
</source> |
Revision as of 14:40, 13 November 2013
test test
// Hallo Welt in Microsoft C#.
using System;
class HelloWorld
{
public static int Main(String[] args)
{
Console.WriteLine("Hallo, Welt!");
return 0;
}
}