class _Main {
	var a = "Hello, world";
	static function main(args : string[]) :void {
		var o = new _Main;
		log o.a;
	}
}
