Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-1.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29e46214b9208cfa32ef18299c2e02966a33428c (plain)
1
2
3
4
5
6
7
8
9
using System;

class X {
	public static int Main (string [] args)
	{
		Console.WriteLine ("Hello, World!");
		return 0;
	}
}