Description:
For our first lab, we had to install JDK and Eclipse and create our first Java program of the class. We also have to familiarize ourselves with a new website call OpenLab. We had to create an portfolio through that website and upload our work onto there. I created a simple program that tells the world hello, and exposed our professor’s love for coffee.
Code:
//Lab 1 Hello World Program //Jain Feng Wu 2/8/2013 //CET3640 public class Helloworld { public static void main( String[] args ) { System.out.println("Hello World, my name is Jain Wu, this program is for Dr. José M. Reyes Álamo whom I recall loves coffee"); } }