Hello world in Java 

 This is my first time using Java and i was a little confused setting up a new project in Eclipse. But then,
i figured out and started wring my first Java application ever and I was so happy when i finished it. I know
it is the beginning of the semester and i still have a long way to go to learn Java. I really expect a lot from this class, i will also teach myself and do a research for things that i am unfamiliar with.

Code 

public class Hello_World {

	/**
	 * @param args
	 */
	public static void main(String[] args) {
		// TODO Auto-generated method stub
			
			System.out.println("Hello World");
			System.out.println("This is my first Java Application");
	}
}


Screenshots: