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

test-52.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 47bf0afc3e5da65f964ae2c4e15c5b8bc20ea579 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

class X {

	static string [] a = {
		"one", "two", "three"
	};
	
	static int Main ()
	{
		foreach (string s in a){
			Console.WriteLine (s);
		}

		return 0;
	}
}