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

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

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