Lab Description: In this lab, i will practice posting the lab on Openlab and displaying a short java program that will display Hello World. First i created my portfolio, then i created a page named CET3640 to keep all my labs organized, then i created another page with CET3640 as the parent to keep everything under one house. I then used the code provided by Professor Reyes to display “Hello World” in java using eclipse.
public class HelloWorld { /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("Hello World"); } }