public class StaticTest {
	public static void main(String[] args) {
		TestClass.helloWorld();

		(new TestClass()).helloWorld();
	} //main()
} //class StaticTest

class TestClass {
	static void helloWorld() 	{
		System.out.println("hello world");
	} //helloWorld()
} //class TestClass