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 } }