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

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

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