Lab Description:
This is Lab Report 0. The purpose of the program in this lab is to simply print out a simple “Hello World” text. It was done easily with just one line to print out text.
Code:
package Lab0; public class HelloWorld { public static void main(String[] args) { System.out.println("Hello World, I'm Calvin and I'm new to Java, treat me nicely."); } }