Difference between revisions of "User:Franziska"

From bwHPC Wiki
Jump to: navigation, search
(Created page with "test <code>test</code>")
 
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;
    }
}