The goal of this lab is to familiarize you with with the Java programming environment, and also introduce you to the basics unix commands.




1) Learn about your desktop environment


2) Learn about basic unix commands


3) Learn about using an editor


4) (a) Compile and execute the following simple java program:

public class Simple{
   public static void main(String[] args){
      System.out.println("Hello World");
   }
}

   (b) Make some small changes to the above program to see what error messages you get.