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

public class Sample : Object {
	public Sample () {
	}

	public void run () {
		stdout.printf ("Hello World\n");
	}

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