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

Program.cs « Console2 « SharedProjectTestBug20571 « test-projects « tests « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cfad30cb17a456edef23677d3f01b75e7ff0c47b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Console2
{
	class MainClass
	{
		public static void Main (string[] args)
		{
			Console.WriteLine ("Hello World!");
		}
	}
}