import std.process;

class Foo {
	void doF() {}
} 

void main () {
	
	//system("pause");
	Foo x;
	x.doF();
	
}