HelloWorldLab1

Decription
The main purpose of this lab was to install Java and eclipse. One time we have all install those two main program into our computer, the first lab assignment was to write and run a Hello World using Java. this program hellworld was very important to understand how it work using Java eclipse program.

CODE:

public class HelloWorldbyHenryA {

/**
* @param args
*/
public static void main(String[] args) {

System.out.println(“HelloWorld”);
}

}

printshop
HELLOWORLD