Cet 3640 lab 1

Lab Description:

The whole point of the first lab was to have us install java and eclipse. Once we had installed it we were to make a simple hello world program. What I did was follow the lab report example coding found here https://openlab.citytech.cuny.edu/cet3640s13/labs/lab-example/. From my understanding public is a modifier and static tells the program that it doesn’t need to worry about anything before this line and just go into println.

Code:

public class lab1 {

public static void main(String[] args) {

System.out.println(“Hello World”);

}}


Screenshots: