summaryrefslogtreecommitdiff
path: root/mcs/tests/test-6.cs
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;
	}
}