Lab 0

Lab Description:

Lab 0 was basically to install eclipse and create a shortcut on your desktop. It also was to create a simple program that every first time programmer creates when they start learning a new language. The program was basically a hello world program using java language.

Code:

package lab0;

public class Helloworld
{
public static void main(String[] args)
{
	System.out.println("Hello World, this is basic java prog");
}
}

Screenshots:

javalab01

 

Leave a Reply