cleol
[mcs.git] / tests / test-6.cs
blobb95d891b7c4179a7d2373563da6ee5b3cfb0037d
1 using System;
3 class X {
5 static int Main ()
7 Console.WriteLine ("From 0 to 9");
8 int i;
10 for (i = 0; i < 10; i++)
11 Console.WriteLine (i);
13 return 0;