Merge all static runtime libs into libmono-static.
[mono.git] / mcs / tests / gtest-401.cs
1 using System;
2
3 class ParserTest
4 {
5         public static void Main ()
6         {
7                 int [] ivals = { 2, 5 };
8                 foreach (int x in ivals)
9                         foreach (int y in ivals)
10                                 Console.WriteLine ("{0} {1} {2} {3} {4} {5}", x, y, x + y, x - y, x < y, x >= y);
11         }
12 }
13