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

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

class X {

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

		return 0;
	}
}