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

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

class X {

	public static int Main ()
	{
		Console.WriteLine ("From 0 to 9");
		
		for (int i = 0; i < 10; i++)
			Console.WriteLine (i);

		return 0;
	}
}