Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-6.cs
bloba90e0bf966270516d7b76d501cbb7049fe741668
1 using System;
3 class X {
5 public 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;