DEFINITIONS

P = the name of the package
C = the name of the class

package P;

class C {

	void start(){
	}
	
	public static void main(String[] args) {
		new C().start();
	}
}