2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-401.cs
blobd36cc8e797f56aa3a756e69054bcab2e85ac8c74
1 using System;
3 class ParserTest
5 public static void Main ()
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);