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

test-360.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1439be8fa8ab83dc0f61fdf320ec6627a410fc38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
public class Application
{
	public static void Main(string[] args)
	{
		if (true)
		{
			string thisWorks = "nice";
			System.Console.WriteLine(thisWorks);
		}
		else
		{
			string thisDoesnt = "not so";
			System.Console.WriteLine(thisDoesnt);
		}
	}
}