Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-5.cs
1 using System;
2
3 class X {
4
5         public static int Main ()
6         {
7                 Console.WriteLine ("From 0 to 9");
8                 
9                 for (int i = 0; i < 10; i++)
10                         Console.WriteLine (i);
11
12                 return 0;
13         }
14 }