Lab 0
Description:
Lab 0 is to get familiar with using OpenLab to submit lab reports for CET 3640. Then, use Eclipse or other Java IDE to run a java hello world program.
Codes:
public class HelloWorld { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("Hello World"); } }