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

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

class T {
        public static int Main ()
	{
		//
		// Just a test to compile the following:
		//
                string a = "Time is: " + DateTime.Now;

		return 0;
        }
}