summaryrefslogtreecommitdiff
path: root/tests/test.cs
blob: 54bc026111ad0bcf3930fd7a58973eb4314ca56f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System;

public class Sample {
	public Sample () {
	}

	public void run () {
		Console.WriteLine ("Hello World");
	}

	static int Main (string[] args) {
		Sample sample = new Sample ();
		sample.run ();
		return 0;
	}
}