Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-401.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d36cc8e797f56aa3a756e69054bcab2e85ac8c74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

class ParserTest
{
	public static void Main ()
	{
		int [] ivals = { 2, 5 };
		foreach (int x in ivals)
			foreach (int y in ivals)
				Console.WriteLine ("{0} {1} {2} {3} {4} {5}", x, y, x + y, x - y, x < y, x >= y);
	}
}