import java.awt.*;
import java.io.*;
import java.util.*;
import java.awt.event.*;

/**
* core class for JPE, works like a hub to all the handlers that do
* most of the work. Also can be started as a java application because
* it implements the main interface.
*/
public class test extends Object {

	public test()	{
		System.out.println("WEEEEEEHHAAA changed again 4.3");
		for (int i=0;i<10000000;i++) {
		}
		System.out.println("WEEEEEEHHAAA changed again 4.4");
	}

	/**
	* main method needed to start the application
	*/
	public static void main(String[] args)
	{
		//System.out.println(args[1]);
		test p = new test();	
	}

}
