Objective
The goal of this lab is to get us started writing java programs, by using a program called Eclipse, which we need to download off the site (http://www.eclipse.org/). This lab consist us in writing a program that outputs “Hello World”. I accomplished this lab by going to youtube and searching how to write a java program.
Code:
public class HelloWorld
{
public static void main(String[] args)
{
System.out.println(“Hello World, This is class CET 3640.”);
}
}
Screenshot