Files
linux-packaging-mono/mcs/tests/test-5.cs

15 lines
171 B
C#
Raw Normal View History

using System;
class X {
public static int Main ()
{
Console.WriteLine ("From 0 to 9");
for (int i = 0; i < 10; i++)
Console.WriteLine (i);
return 0;
}
}