Lab 0 – OpenLab and Eclipse

Lab 0 – In this lab I was able to install both Java JDK 7 and Eclipse in order to create the “Hello World” program below. By using the sample code I was able to rewrite it and utilize the basics of the Eclipse software in order to make this code run.

public class Lab0 {

	public static void main(String[] args) {
		System.out.println("Hello world!");
		// TODO Auto-generated method stub

	}

}

Lab0_Hello_World_Java

Leave a Reply

Your email address will not be published. Required fields are marked *