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

Main.cs « MonoDevelop.DocFood « addins « src « main - github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4fada6e7fda720fd698f216c2ce6e45ffe2ce64 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

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