User:Franziska: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 15: | Line 15: | ||
} |
} |
||
</source> |
</source> |
||
<code>test</code> |
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;
}
}
test